/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/v8/include/v8-external.h
73 строки
2 KB
Michaël Zasso
deps: update V8 to 14.6.202.33
24 апр 2026, 19:01
Не верифицирован
24 апр 2026, 19:01
f1e0b83
Код
Авторство
О чём код?
// Copyright 2021 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef INCLUDE_V8_EXTERNAL_H_ #define INCLUDE_V8_EXTERNAL_H_ #include "v8-value.h" // NOLINT(build/include_directory) #include "v8config.h" // NOLINT(build/include_directory) namespace v8 { class Isolate; /** * A tag for external pointers. Objects with different C++ types should use * different values of ExternalPointerTypeTag when using v8::External. The * allowed range is 0..V8_EXTERNAL_POINTER_TAG_COUNT - 1. If this is not * sufficient, V8_EXTERNAL_POINTER_TAG_COUNT can be increased. */ using ExternalPointerTypeTag = uint16_t; constexpr ExternalPointerTypeTag kExternalPointerTypeTagDefault = 0; /** * A JavaScript value that wraps a C++ void*. This type of value is mainly used * to associate C++ data structures with JavaScript objects. */ class V8_EXPORT External : public Value { public: V8_DEPRECATED("Use the version with the type tag.") static Local<External> New(Isolate* isolate, void* value) { return New(isolate, value, kExternalPointerTypeTagDefault); } /** * Creates a new External object. * * \param isolate The isolate for the external object. * \param value The C++ pointer value. * \param tag The type tag of the external pointer. If type tags are not used * in the embedder, the default value `kExternalPointerTypeTagDefault` can be * used. * \return The new External object. */ static Local<External> New(Isolate* isolate, void* value, ExternalPointerTypeTag tag); V8_INLINE static External* Cast(Data* value) { #ifdef V8_ENABLE_CHECKS CheckCast(value); #endif return static_cast<External*>(value); } V8_DEPRECATED("Use the version with the type tag.") void* Value() const { return Value(kExternalPointerTypeTagDefault); } /** * Returns the value of the external pointer. * * \param tag The type tag of the external pointer. If type tags are not used * in the embedder, the default value `kExternalPointerTypeTagDefault` can be * used. * \return The value of the external pointer. */ void* Value(ExternalPointerTypeTag tag) const; private: static void CheckCast(v8::Data* obj); }; } // namespace v8 #endif // INCLUDE_V8_EXTERNAL_H_