| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 94acaae commit e60053d
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.9', | ||
| 39 | + 'v8_embedder_string': '-node.10', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
| 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>) { | |||
| 709 | 709 | return arg; | |
| 710 | 710 | } | |
| 711 | 711 | ||
| 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 | + | ||
| 712 | 719 | IterationStatement* AsIterationStatement(BreakableStatement* s) { | |
| 713 | 720 | return s->AsIterationStatement(); | |
| 714 | 721 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments