/
snap
/
node
/
11691
/
include
/
node
/
/snap/node/11691/include/node
mkdir
upload
Name
Size
Mode
Actions
cppgc/
-
0755
rm
libplatform/
-
0755
rm
openssl/
-
0755
rm
uv/
-
0755
rm
common.gypi
26973
0644
edit
dl
rm
config.gypi
18657
0644
edit
dl
rm
js_native_api.h
31770
0644
edit
dl
rm
js_native_api_types.h
7603
0644
edit
dl
rm
node.h
69595
0644
edit
dl
rm
node_api.h
10370
0644
edit
dl
rm
node_api_types.h
1825
0644
edit
dl
rm
node_buffer.h
3684
0644
edit
dl
rm
node_object_wrap.h
3867
0644
edit
dl
rm
node_version.h
4243
0644
edit
dl
rm
uv.h
72810
0644
edit
dl
rm
v8-array-buffer.h
18316
0644
edit
dl
rm
v8-callbacks.h
16993
0644
edit
dl
rm
v8-container.h
5959
0644
edit
dl
rm
v8-context.h
18184
0644
edit
dl
rm
v8-cppgc.h
7641
0644
edit
dl
rm
v8-data.h
1623
0644
edit
dl
rm
v8-date.h
1218
0644
edit
dl
rm
v8-debug.h
5161
0644
edit
dl
rm
v8-embedder-heap.h
2775
0644
edit
dl
rm
v8-embedder-state-scope.h
1493
0644
edit
dl
rm
v8-exception.h
7589
0644
edit
dl
rm
v8-extension.h
1870
0644
edit
dl
rm
v8-external.h
924
0644
edit
dl
rm
v8-forward.h
1688
0644
edit
dl
rm
v8-function-callback.h
19648
0644
edit
dl
rm
v8-function.h
4530
0644
edit
dl
rm
v8-handle-base.h
4404
0644
edit
dl
rm
v8-initialization.h
10478
0644
edit
dl
rm
v8-internal.h
58594
0644
edit
dl
rm
v8-isolate.h
64906
0644
edit
dl
rm
v8-json.h
1356
0644
edit
dl
rm
v8-local-handle.h
24162
0644
edit
dl
rm
v8-locker.h
3956
0644
edit
dl
rm
v8-maybe.h
4574
0644
edit
dl
rm
v8-memory-span.h
6421
0644
edit
dl
rm
v8-message.h
7418
0644
edit
dl
rm
v8-microtask-queue.h
5069
0644
edit
dl
rm
v8-microtask.h
861
0644
edit
dl
rm
v8-object.h
30261
0644
edit
dl
rm
v8-persistent-handle.h
18239
0644
edit
dl
rm
v8-platform.h
49052
0644
edit
dl
rm
v8-primitive-object.h
2591
0644
edit
dl
rm
v8-primitive.h
28358
0644
edit
dl
rm
v8-profiler.h
42101
0644
edit
dl
rm
v8-promise.h
5294
0644
edit
dl
rm
v8-proxy.h
1255
0644
edit
dl
rm
v8-regexp.h
3171
0644
edit
dl
rm
v8-script.h
31327
0644
edit
dl
rm
v8-snapshot.h
10389
0644
edit
dl
rm
v8-source-location.h
2597
0644
edit
dl
rm
v8-statistics.h
7627
0644
edit
dl
rm
v8-template.h
51569
0644
edit
dl
rm
v8-traced-handle.h
12700
0644
edit
dl
rm
v8-typed-array.h
11571
0644
edit
dl
rm
v8-unwinder.h
4751
0644
edit
dl
rm
v8-value-serializer.h
10815
0644
edit
dl
rm
v8-value.h
17107
0644
edit
dl
rm
v8-version.h
773
0644
edit
dl
rm
v8-wasm.h
6148
0644
edit
dl
rm
v8-weak-callback-info.h
2471
0644
edit
dl
rm
v8.h
3775
0644
edit
dl
rm
v8config.h
33641
0644
edit
dl
rm
zconf.h
16995
0644
edit
dl
rm
zlib.h
97454
0644
edit
dl
rm
Edit:
/snap/node/11691/include/node/v8-data.h
(1623B)
// 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_DATA_H_ #define INCLUDE_V8_DATA_H_ #include "v8-local-handle.h" // NOLINT(build/include_directory) #include "v8config.h" // NOLINT(build/include_directory) namespace v8 { class Context; /** * The superclass of objects that can reside on V8's heap. */ class V8_EXPORT Data { public: /** * Returns true if this data is a |v8::Value|. */ bool IsValue() const; /** * Returns true if this data is a |v8::Module|. */ bool IsModule() const; /** * Returns tru if this data is a |v8::FixedArray| */ bool IsFixedArray() const; /** * Returns true if this data is a |v8::Private|. */ bool IsPrivate() const; /** * Returns true if this data is a |v8::ObjectTemplate|. */ bool IsObjectTemplate() const; /** * Returns true if this data is a |v8::FunctionTemplate|. */ bool IsFunctionTemplate() const; /** * Returns true if this data is a |v8::Context|. */ bool IsContext() const; private: Data() = delete; }; /** * A fixed-sized array with elements of type Data. */ class V8_EXPORT FixedArray : public Data { public: int Length() const; Local<Data> Get(Local<Context> context, int i) const; V8_INLINE static FixedArray* Cast(Data* data) { #ifdef V8_ENABLE_CHECKS CheckCast(data); #endif return reinterpret_cast<FixedArray*>(data); } private: static void CheckCast(Data* obj); }; } // namespace v8 #endif // INCLUDE_V8_DATA_H_
Save
cmd:
run