@babylonjs/v8-android-jit-nointl-nosnapshot 11.110.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. package/dist/include/APIDesign.md +72 -0
  2. package/dist/include/DEPS +10 -0
  3. package/dist/include/DIR_METADATA +11 -0
  4. package/dist/include/OWNERS +23 -0
  5. package/dist/include/cppgc/DEPS +8 -0
  6. package/dist/include/cppgc/OWNERS +2 -0
  7. package/dist/include/cppgc/README.md +135 -0
  8. package/dist/include/cppgc/allocation.h +310 -0
  9. package/dist/include/cppgc/common.h +28 -0
  10. package/dist/include/cppgc/cross-thread-persistent.h +464 -0
  11. package/dist/include/cppgc/custom-space.h +97 -0
  12. package/dist/include/cppgc/default-platform.h +67 -0
  13. package/dist/include/cppgc/ephemeron-pair.h +30 -0
  14. package/dist/include/cppgc/explicit-management.h +100 -0
  15. package/dist/include/cppgc/garbage-collected.h +106 -0
  16. package/dist/include/cppgc/heap-consistency.h +309 -0
  17. package/dist/include/cppgc/heap-handle.h +48 -0
  18. package/dist/include/cppgc/heap-state.h +82 -0
  19. package/dist/include/cppgc/heap-statistics.h +120 -0
  20. package/dist/include/cppgc/heap.h +202 -0
  21. package/dist/include/cppgc/internal/api-constants.h +65 -0
  22. package/dist/include/cppgc/internal/atomic-entry-flag.h +48 -0
  23. package/dist/include/cppgc/internal/base-page-handle.h +45 -0
  24. package/dist/include/cppgc/internal/caged-heap-local-data.h +111 -0
  25. package/dist/include/cppgc/internal/caged-heap.h +61 -0
  26. package/dist/include/cppgc/internal/compiler-specific.h +38 -0
  27. package/dist/include/cppgc/internal/finalizer-trait.h +93 -0
  28. package/dist/include/cppgc/internal/gc-info.h +155 -0
  29. package/dist/include/cppgc/internal/logging.h +50 -0
  30. package/dist/include/cppgc/internal/member-storage.h +236 -0
  31. package/dist/include/cppgc/internal/name-trait.h +137 -0
  32. package/dist/include/cppgc/internal/persistent-node.h +214 -0
  33. package/dist/include/cppgc/internal/pointer-policies.h +207 -0
  34. package/dist/include/cppgc/internal/write-barrier.h +477 -0
  35. package/dist/include/cppgc/liveness-broker.h +78 -0
  36. package/dist/include/cppgc/macros.h +26 -0
  37. package/dist/include/cppgc/member.h +566 -0
  38. package/dist/include/cppgc/name-provider.h +65 -0
  39. package/dist/include/cppgc/object-size-trait.h +58 -0
  40. package/dist/include/cppgc/persistent.h +366 -0
  41. package/dist/include/cppgc/platform.h +158 -0
  42. package/dist/include/cppgc/prefinalizer.h +75 -0
  43. package/dist/include/cppgc/process-heap-statistics.h +36 -0
  44. package/dist/include/cppgc/sentinel-pointer.h +32 -0
  45. package/dist/include/cppgc/source-location.h +92 -0
  46. package/dist/include/cppgc/testing.h +106 -0
  47. package/dist/include/cppgc/trace-trait.h +120 -0
  48. package/dist/include/cppgc/type-traits.h +249 -0
  49. package/dist/include/cppgc/visitor.h +411 -0
  50. package/dist/include/js_protocol-1.2.json +997 -0
  51. package/dist/include/js_protocol-1.3.json +1159 -0
  52. package/dist/include/js_protocol.pdl +1766 -0
  53. package/dist/include/libplatform/DEPS +9 -0
  54. package/dist/include/libplatform/libplatform-export.h +29 -0
  55. package/dist/include/libplatform/libplatform.h +106 -0
  56. package/dist/include/libplatform/v8-tracing.h +333 -0
  57. package/dist/include/v8-array-buffer.h +512 -0
  58. package/dist/include/v8-callbacks.h +412 -0
  59. package/dist/include/v8-container.h +129 -0
  60. package/dist/include/v8-context.h +415 -0
  61. package/dist/include/v8-cppgc.h +231 -0
  62. package/dist/include/v8-data.h +80 -0
  63. package/dist/include/v8-date.h +48 -0
  64. package/dist/include/v8-debug.h +168 -0
  65. package/dist/include/v8-embedder-heap.h +223 -0
  66. package/dist/include/v8-embedder-state-scope.h +51 -0
  67. package/dist/include/v8-exception.h +217 -0
  68. package/dist/include/v8-extension.h +62 -0
  69. package/dist/include/v8-external.h +37 -0
  70. package/dist/include/v8-fast-api-calls.h +957 -0
  71. package/dist/include/v8-forward.h +81 -0
  72. package/dist/include/v8-function-callback.h +475 -0
  73. package/dist/include/v8-function.h +133 -0
  74. package/dist/include/v8-initialization.h +289 -0
  75. package/dist/include/v8-inspector-protocol.h +13 -0
  76. package/dist/include/v8-inspector.h +397 -0
  77. package/dist/include/v8-internal.h +851 -0
  78. package/dist/include/v8-isolate.h +1695 -0
  79. package/dist/include/v8-json.h +47 -0
  80. package/dist/include/v8-local-handle.h +455 -0
  81. package/dist/include/v8-locker.h +138 -0
  82. package/dist/include/v8-maybe.h +160 -0
  83. package/dist/include/v8-memory-span.h +43 -0
  84. package/dist/include/v8-message.h +214 -0
  85. package/dist/include/v8-metrics.h +311 -0
  86. package/dist/include/v8-microtask-queue.h +157 -0
  87. package/dist/include/v8-microtask.h +28 -0
  88. package/dist/include/v8-object.h +768 -0
  89. package/dist/include/v8-persistent-handle.h +588 -0
  90. package/dist/include/v8-platform.h +1130 -0
  91. package/dist/include/v8-primitive-object.h +118 -0
  92. package/dist/include/v8-primitive.h +866 -0
  93. package/dist/include/v8-profiler.h +1277 -0
  94. package/dist/include/v8-promise.h +174 -0
  95. package/dist/include/v8-proxy.h +50 -0
  96. package/dist/include/v8-regexp.h +106 -0
  97. package/dist/include/v8-script.h +803 -0
  98. package/dist/include/v8-snapshot.h +196 -0
  99. package/dist/include/v8-statistics.h +217 -0
  100. package/dist/include/v8-template.h +1018 -0
  101. package/dist/include/v8-traced-handle.h +420 -0
  102. package/dist/include/v8-typed-array.h +282 -0
  103. package/dist/include/v8-unwinder-state.h +31 -0
  104. package/dist/include/v8-unwinder.h +132 -0
  105. package/dist/include/v8-util.h +656 -0
  106. package/dist/include/v8-value-serializer-version.h +24 -0
  107. package/dist/include/v8-value-serializer.h +302 -0
  108. package/dist/include/v8-value.h +531 -0
  109. package/dist/include/v8-version-string.h +38 -0
  110. package/dist/include/v8-version.h +20 -0
  111. package/dist/include/v8-wasm-trap-handler-posix.h +31 -0
  112. package/dist/include/v8-wasm-trap-handler-win.h +28 -0
  113. package/dist/include/v8-wasm.h +200 -0
  114. package/dist/include/v8-weak-callback-info.h +80 -0
  115. package/dist/include/v8.h +88 -0
  116. package/dist/include/v8config.h +904 -0
  117. package/dist/org/chromium/v8-android/11.110.1/v8-android-11.110.1.aar +0 -0
  118. package/dist/org/chromium/v8-android/11.110.1/v8-android-11.110.1.aar.md5 +1 -0
  119. package/dist/org/chromium/v8-android/11.110.1/v8-android-11.110.1.aar.sha1 +1 -0
  120. package/dist/org/chromium/v8-android/11.110.1/v8-android-11.110.1.pom +10 -0
  121. package/dist/org/chromium/v8-android/11.110.1/v8-android-11.110.1.pom.md5 +1 -0
  122. package/dist/org/chromium/v8-android/11.110.1/v8-android-11.110.1.pom.sha1 +1 -0
  123. package/dist/org/chromium/v8-android/maven-metadata.xml +12 -0
  124. package/dist/org/chromium/v8-android/maven-metadata.xml.md5 +1 -0
  125. package/dist/org/chromium/v8-android/maven-metadata.xml.sha1 +1 -0
  126. package/package.json +24 -0
@@ -0,0 +1,160 @@
1
+ // Copyright 2021 the V8 project authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ #ifndef INCLUDE_V8_MAYBE_H_
6
+ #define INCLUDE_V8_MAYBE_H_
7
+
8
+ #include <type_traits>
9
+ #include <utility>
10
+
11
+ #include "v8-internal.h" // NOLINT(build/include_directory)
12
+ #include "v8config.h" // NOLINT(build/include_directory)
13
+
14
+ namespace v8 {
15
+
16
+ namespace api_internal {
17
+ // Called when ToChecked is called on an empty Maybe.
18
+ V8_EXPORT void FromJustIsNothing();
19
+ } // namespace api_internal
20
+
21
+ /**
22
+ * A simple Maybe type, representing an object which may or may not have a
23
+ * value, see https://hackage.haskell.org/package/base/docs/Data-Maybe.html.
24
+ *
25
+ * If an API method returns a Maybe<>, the API method can potentially fail
26
+ * either because an exception is thrown, or because an exception is pending,
27
+ * e.g. because a previous API call threw an exception that hasn't been caught
28
+ * yet, or because a TerminateExecution exception was thrown. In that case, a
29
+ * "Nothing" value is returned.
30
+ */
31
+ template <class T>
32
+ class Maybe {
33
+ public:
34
+ V8_INLINE bool IsNothing() const { return !has_value_; }
35
+ V8_INLINE bool IsJust() const { return has_value_; }
36
+
37
+ /**
38
+ * An alias for |FromJust|. Will crash if the Maybe<> is nothing.
39
+ */
40
+ V8_INLINE T ToChecked() const { return FromJust(); }
41
+
42
+ /**
43
+ * Short-hand for ToChecked(), which doesn't return a value. To be used, where
44
+ * the actual value of the Maybe is not needed like Object::Set.
45
+ */
46
+ V8_INLINE void Check() const {
47
+ if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
48
+ }
49
+
50
+ /**
51
+ * Converts this Maybe<> to a value of type T. If this Maybe<> is
52
+ * nothing (empty), |false| is returned and |out| is left untouched.
53
+ */
54
+ V8_WARN_UNUSED_RESULT V8_INLINE bool To(T* out) const {
55
+ if (V8_LIKELY(IsJust())) *out = value_;
56
+ return IsJust();
57
+ }
58
+
59
+ /**
60
+ * Converts this Maybe<> to a value of type T. If this Maybe<> is
61
+ * nothing (empty), V8 will crash the process.
62
+ */
63
+ V8_INLINE T FromJust() const& {
64
+ if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
65
+ return value_;
66
+ }
67
+
68
+ /**
69
+ * Converts this Maybe<> to a value of type T. If this Maybe<> is
70
+ * nothing (empty), V8 will crash the process.
71
+ */
72
+ V8_INLINE T FromJust() && {
73
+ if (V8_UNLIKELY(!IsJust())) api_internal::FromJustIsNothing();
74
+ return std::move(value_);
75
+ }
76
+
77
+ /**
78
+ * Converts this Maybe<> to a value of type T, using a default value if this
79
+ * Maybe<> is nothing (empty).
80
+ */
81
+ V8_INLINE T FromMaybe(const T& default_value) const {
82
+ return has_value_ ? value_ : default_value;
83
+ }
84
+
85
+ V8_INLINE bool operator==(const Maybe& other) const {
86
+ return (IsJust() == other.IsJust()) &&
87
+ (!IsJust() || FromJust() == other.FromJust());
88
+ }
89
+
90
+ V8_INLINE bool operator!=(const Maybe& other) const {
91
+ return !operator==(other);
92
+ }
93
+
94
+ private:
95
+ Maybe() : has_value_(false) {}
96
+ explicit Maybe(const T& t) : has_value_(true), value_(t) {}
97
+ explicit Maybe(T&& t) : has_value_(true), value_(std::move(t)) {}
98
+
99
+ bool has_value_;
100
+ T value_;
101
+
102
+ template <class U>
103
+ friend Maybe<U> Nothing();
104
+ template <class U>
105
+ friend Maybe<U> Just(const U& u);
106
+ template <class U, std::enable_if_t<!std::is_lvalue_reference_v<U>>*>
107
+ friend Maybe<U> Just(U&& u);
108
+ };
109
+
110
+ template <class T>
111
+ inline Maybe<T> Nothing() {
112
+ return Maybe<T>();
113
+ }
114
+
115
+ template <class T>
116
+ inline Maybe<T> Just(const T& t) {
117
+ return Maybe<T>(t);
118
+ }
119
+
120
+ // Don't use forwarding references here but instead use two overloads.
121
+ // Forwarding references only work when type deduction takes place, which is not
122
+ // the case for callsites such as Just<Type>(t).
123
+ template <class T, std::enable_if_t<!std::is_lvalue_reference_v<T>>* = nullptr>
124
+ inline Maybe<T> Just(T&& t) {
125
+ return Maybe<T>(std::move(t));
126
+ }
127
+
128
+ // A template specialization of Maybe<T> for the case of T = void.
129
+ template <>
130
+ class Maybe<void> {
131
+ public:
132
+ V8_INLINE bool IsNothing() const { return !is_valid_; }
133
+ V8_INLINE bool IsJust() const { return is_valid_; }
134
+
135
+ V8_INLINE bool operator==(const Maybe& other) const {
136
+ return IsJust() == other.IsJust();
137
+ }
138
+
139
+ V8_INLINE bool operator!=(const Maybe& other) const {
140
+ return !operator==(other);
141
+ }
142
+
143
+ private:
144
+ struct JustTag {};
145
+
146
+ Maybe() : is_valid_(false) {}
147
+ explicit Maybe(JustTag) : is_valid_(true) {}
148
+
149
+ bool is_valid_;
150
+
151
+ template <class U>
152
+ friend Maybe<U> Nothing();
153
+ friend Maybe<void> JustVoid();
154
+ };
155
+
156
+ inline Maybe<void> JustVoid() { return Maybe<void>(Maybe<void>::JustTag()); }
157
+
158
+ } // namespace v8
159
+
160
+ #endif // INCLUDE_V8_MAYBE_H_
@@ -0,0 +1,43 @@
1
+ // Copyright 2021 the V8 project authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ #ifndef INCLUDE_V8_MEMORY_SPAN_H_
6
+ #define INCLUDE_V8_MEMORY_SPAN_H_
7
+
8
+ #include <stddef.h>
9
+
10
+ #include "v8config.h" // NOLINT(build/include_directory)
11
+
12
+ namespace v8 {
13
+
14
+ /**
15
+ * Points to an unowned continous buffer holding a known number of elements.
16
+ *
17
+ * This is similar to std::span (under consideration for C++20), but does not
18
+ * require advanced C++ support. In the (far) future, this may be replaced with
19
+ * or aliased to std::span.
20
+ *
21
+ * To facilitate future migration, this class exposes a subset of the interface
22
+ * implemented by std::span.
23
+ */
24
+ template <typename T>
25
+ class V8_EXPORT MemorySpan {
26
+ public:
27
+ /** The default constructor creates an empty span. */
28
+ constexpr MemorySpan() = default;
29
+
30
+ constexpr MemorySpan(T* data, size_t size) : data_(data), size_(size) {}
31
+
32
+ /** Returns a pointer to the beginning of the buffer. */
33
+ constexpr T* data() const { return data_; }
34
+ /** Returns the number of elements that the buffer holds. */
35
+ constexpr size_t size() const { return size_; }
36
+
37
+ private:
38
+ T* data_ = nullptr;
39
+ size_t size_ = 0;
40
+ };
41
+
42
+ } // namespace v8
43
+ #endif // INCLUDE_V8_MEMORY_SPAN_H_
@@ -0,0 +1,214 @@
1
+ // Copyright 2021 the V8 project authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+
5
+ #ifndef INCLUDE_V8_MESSAGE_H_
6
+ #define INCLUDE_V8_MESSAGE_H_
7
+
8
+ #include <stdio.h>
9
+
10
+ #include <iosfwd>
11
+
12
+ #include "v8-local-handle.h" // NOLINT(build/include_directory)
13
+ #include "v8-maybe.h" // NOLINT(build/include_directory)
14
+ #include "v8-primitive.h" // NOLINT(build/include_directory)
15
+ #include "v8config.h" // NOLINT(build/include_directory)
16
+
17
+ namespace v8 {
18
+
19
+ class Integer;
20
+ class PrimitiveArray;
21
+ class StackTrace;
22
+ class String;
23
+ class Value;
24
+
25
+ /**
26
+ * The optional attributes of ScriptOrigin.
27
+ */
28
+ class ScriptOriginOptions {
29
+ public:
30
+ V8_INLINE ScriptOriginOptions(bool is_shared_cross_origin = false,
31
+ bool is_opaque = false, bool is_wasm = false,
32
+ bool is_module = false)
33
+ : flags_((is_shared_cross_origin ? kIsSharedCrossOrigin : 0) |
34
+ (is_wasm ? kIsWasm : 0) | (is_opaque ? kIsOpaque : 0) |
35
+ (is_module ? kIsModule : 0)) {}
36
+ V8_INLINE ScriptOriginOptions(int flags)
37
+ : flags_(flags &
38
+ (kIsSharedCrossOrigin | kIsOpaque | kIsWasm | kIsModule)) {}
39
+
40
+ bool IsSharedCrossOrigin() const {
41
+ return (flags_ & kIsSharedCrossOrigin) != 0;
42
+ }
43
+ bool IsOpaque() const { return (flags_ & kIsOpaque) != 0; }
44
+ bool IsWasm() const { return (flags_ & kIsWasm) != 0; }
45
+ bool IsModule() const { return (flags_ & kIsModule) != 0; }
46
+
47
+ int Flags() const { return flags_; }
48
+
49
+ private:
50
+ enum {
51
+ kIsSharedCrossOrigin = 1,
52
+ kIsOpaque = 1 << 1,
53
+ kIsWasm = 1 << 2,
54
+ kIsModule = 1 << 3
55
+ };
56
+ const int flags_;
57
+ };
58
+
59
+ /**
60
+ * The origin, within a file, of a script.
61
+ */
62
+ class V8_EXPORT ScriptOrigin {
63
+ public:
64
+ V8_INLINE ScriptOrigin(Isolate* isolate, Local<Value> resource_name,
65
+ int resource_line_offset = 0,
66
+ int resource_column_offset = 0,
67
+ bool resource_is_shared_cross_origin = false,
68
+ int script_id = -1,
69
+ Local<Value> source_map_url = Local<Value>(),
70
+ bool resource_is_opaque = false, bool is_wasm = false,
71
+ bool is_module = false,
72
+ Local<Data> host_defined_options = Local<Data>())
73
+ : v8_isolate_(isolate),
74
+ resource_name_(resource_name),
75
+ resource_line_offset_(resource_line_offset),
76
+ resource_column_offset_(resource_column_offset),
77
+ options_(resource_is_shared_cross_origin, resource_is_opaque, is_wasm,
78
+ is_module),
79
+ script_id_(script_id),
80
+ source_map_url_(source_map_url),
81
+ host_defined_options_(host_defined_options) {
82
+ VerifyHostDefinedOptions();
83
+ }
84
+
85
+ V8_INLINE Local<Value> ResourceName() const;
86
+ V8_INLINE int LineOffset() const;
87
+ V8_INLINE int ColumnOffset() const;
88
+ V8_INLINE int ScriptId() const;
89
+ V8_INLINE Local<Value> SourceMapUrl() const;
90
+ V8_INLINE Local<Data> GetHostDefinedOptions() const;
91
+ V8_INLINE ScriptOriginOptions Options() const { return options_; }
92
+
93
+ private:
94
+ void VerifyHostDefinedOptions() const;
95
+ Isolate* v8_isolate_;
96
+ Local<Value> resource_name_;
97
+ int resource_line_offset_;
98
+ int resource_column_offset_;
99
+ ScriptOriginOptions options_;
100
+ int script_id_;
101
+ Local<Value> source_map_url_;
102
+ Local<Data> host_defined_options_;
103
+ };
104
+
105
+ /**
106
+ * An error message.
107
+ */
108
+ class V8_EXPORT Message {
109
+ public:
110
+ Local<String> Get() const;
111
+
112
+ /**
113
+ * Return the isolate to which the Message belongs.
114
+ */
115
+ Isolate* GetIsolate() const;
116
+
117
+ V8_WARN_UNUSED_RESULT MaybeLocal<String> GetSource(
118
+ Local<Context> context) const;
119
+ V8_WARN_UNUSED_RESULT MaybeLocal<String> GetSourceLine(
120
+ Local<Context> context) const;
121
+
122
+ /**
123
+ * Returns the origin for the script from where the function causing the
124
+ * error originates.
125
+ */
126
+ ScriptOrigin GetScriptOrigin() const;
127
+
128
+ /**
129
+ * Returns the resource name for the script from where the function causing
130
+ * the error originates.
131
+ */
132
+ Local<Value> GetScriptResourceName() const;
133
+
134
+ /**
135
+ * Exception stack trace. By default stack traces are not captured for
136
+ * uncaught exceptions. SetCaptureStackTraceForUncaughtExceptions allows
137
+ * to change this option.
138
+ */
139
+ Local<StackTrace> GetStackTrace() const;
140
+
141
+ /**
142
+ * Returns the number, 1-based, of the line where the error occurred.
143
+ */
144
+ V8_WARN_UNUSED_RESULT Maybe<int> GetLineNumber(Local<Context> context) const;
145
+
146
+ /**
147
+ * Returns the index within the script of the first character where
148
+ * the error occurred.
149
+ */
150
+ int GetStartPosition() const;
151
+
152
+ /**
153
+ * Returns the index within the script of the last character where
154
+ * the error occurred.
155
+ */
156
+ int GetEndPosition() const;
157
+
158
+ /**
159
+ * Returns the Wasm function index where the error occurred. Returns -1 if
160
+ * message is not from a Wasm script.
161
+ */
162
+ int GetWasmFunctionIndex() const;
163
+
164
+ /**
165
+ * Returns the error level of the message.
166
+ */
167
+ int ErrorLevel() const;
168
+
169
+ /**
170
+ * Returns the index within the line of the first character where
171
+ * the error occurred.
172
+ */
173
+ int GetStartColumn() const;
174
+ V8_WARN_UNUSED_RESULT Maybe<int> GetStartColumn(Local<Context> context) const;
175
+
176
+ /**
177
+ * Returns the index within the line of the last character where
178
+ * the error occurred.
179
+ */
180
+ int GetEndColumn() const;
181
+ V8_WARN_UNUSED_RESULT Maybe<int> GetEndColumn(Local<Context> context) const;
182
+
183
+ /**
184
+ * Passes on the value set by the embedder when it fed the script from which
185
+ * this Message was generated to V8.
186
+ */
187
+ bool IsSharedCrossOrigin() const;
188
+ bool IsOpaque() const;
189
+
190
+ static void PrintCurrentStackTrace(Isolate* isolate, std::ostream& out);
191
+
192
+ static const int kNoLineNumberInfo = 0;
193
+ static const int kNoColumnInfo = 0;
194
+ static const int kNoScriptIdInfo = 0;
195
+ static const int kNoWasmFunctionIndexInfo = -1;
196
+ };
197
+
198
+ Local<Value> ScriptOrigin::ResourceName() const { return resource_name_; }
199
+
200
+ Local<Data> ScriptOrigin::GetHostDefinedOptions() const {
201
+ return host_defined_options_;
202
+ }
203
+
204
+ int ScriptOrigin::LineOffset() const { return resource_line_offset_; }
205
+
206
+ int ScriptOrigin::ColumnOffset() const { return resource_column_offset_; }
207
+
208
+ int ScriptOrigin::ScriptId() const { return script_id_; }
209
+
210
+ Local<Value> ScriptOrigin::SourceMapUrl() const { return source_map_url_; }
211
+
212
+ } // namespace v8
213
+
214
+ #endif // INCLUDE_V8_MESSAGE_H_