Skip to content

Commit b60a03d

Browse files
joyeecheungV8 LUCI CQ
authored and
V8 LUCI CQ
committed
[api] mark v8::Script and v8::UnboundScript as v8::Data
v8::UnboundModuleScript and v8::Module are already v8::Data. Mark v8::Script and v8::UnboundScript as v8::Data so that they can be used in other V8 APIs that takes v8::Data. Refs: nodejs/node#48510 Bug: v8:14120 Change-Id: I2dd5648528c1b0030292872441758d4fb2cfcc1c Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4827307 Reviewed-by: Camillo Bruni <[email protected]> Commit-Queue: Joyee Cheung <[email protected]> Cr-Commit-Position: refs/heads/main@{#89727}
1 parent 6765785 commit b60a03d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/v8-script.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class V8_EXPORT ScriptOrModule {
5656
/**
5757
* A compiled JavaScript script, not yet tied to a Context.
5858
*/
59-
class V8_EXPORT UnboundScript {
59+
class V8_EXPORT UnboundScript : public Data {
6060
public:
6161
/**
6262
* Binds the script to the currently entered context.
@@ -320,7 +320,7 @@ class V8_EXPORT Module : public Data {
320320
* A compiled JavaScript script, tied to a Context which was active when the
321321
* script was compiled.
322322
*/
323-
class V8_EXPORT Script {
323+
class V8_EXPORT Script : public Data {
324324
public:
325325
/**
326326
* A shorthand for ScriptCompiler::Compile().

0 commit comments

Comments
 (0)