File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 3636
3737 # Reset this number to 0 on major V8 upgrades.
3838 # Increment by one for each non-official patch applied to deps/v8.
39- 'v8_embedder_string' : '-node.9 ' ,
39+ 'v8_embedder_string' : '-node.10 ' ,
4040
4141 ##### V8 defaults for Node.js #####
4242
Original file line number Diff line number Diff line change @@ -709,6 +709,13 @@ class V8_EXPORT_PRIVATE Parser : public NON_EXPORTED_BASE(ParserBase<Parser>) {
709709 return arg;
710710 }
711711
712+ const AstRawString* PreParserIdentifierToAstRawString (
713+ const PreParserIdentifier& arg) {
714+ // This method definition is only needed due to an MSVC oddity that
715+ // instantiates the method despite it being unused. See crbug.com/v8/12266 .
716+ UNREACHABLE ();
717+ }
718+
712719 IterationStatement* AsIterationStatement (BreakableStatement* s) {
713720 return s->AsIterationStatement ();
714721 }
You can’t perform that action at this time.
0 commit comments