diff --git a/common.gypi b/common.gypi index d783c7f970237a..519ddcd28e6524 100644 --- a/common.gypi +++ b/common.gypi @@ -36,7 +36,7 @@ # Reset this number to 0 on major V8 upgrades. # Increment by one for each non-official patch applied to deps/v8. - 'v8_embedder_string': '-node.16', + 'v8_embedder_string': '-node.17', ##### V8 defaults for Node.js ##### diff --git a/deps/v8/include/v8-script.h b/deps/v8/include/v8-script.h index 4a8ccab7e28d1d..9b278da6d587a4 100644 --- a/deps/v8/include/v8-script.h +++ b/deps/v8/include/v8-script.h @@ -55,7 +55,7 @@ class V8_EXPORT ScriptOrModule { /** * A compiled JavaScript script, not yet tied to a Context. */ -class V8_EXPORT UnboundScript { +class V8_EXPORT UnboundScript : public Data { public: /** * Binds the script to the currently entered context. @@ -320,7 +320,7 @@ class V8_EXPORT Module : public Data { * A compiled JavaScript script, tied to a Context which was active when the * script was compiled. */ -class V8_EXPORT Script { +class V8_EXPORT Script : public Data { public: /** * A shorthand for ScriptCompiler::Compile().