| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 98ae1eb commit 6303f19
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ | |||
| 11 | 11 | #define V8_MAJOR_VERSION 12 | |
| 12 | 12 | #define V8_MINOR_VERSION 4 | |
| 13 | 13 | #define V8_BUILD_NUMBER 254 | |
| 14 | - #define V8_PATCH_LEVEL 19 | ||
| 14 | + #define V8_PATCH_LEVEL 20 | ||
| 15 | 15 | ||
| 16 | 16 | // Use 1 for candidates and 0 otherwise. | |
| 17 | 17 | // (Boolean macro values are not supported by all preprocessors.) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2445,7 +2445,7 @@ bool Scope::MustAllocate(Variable* var) { | |||
| 2445 | 2445 | var->set_is_used(); | |
| 2446 | 2446 | if (inner_scope_calls_eval_ && !var->is_this()) var->SetMaybeAssigned(); | |
| 2447 | 2447 | } | |
| 2448 | - DCHECK(!var->has_forced_context_allocation() || var->is_used()); | ||
| 2448 | + CHECK(!var->has_forced_context_allocation() || var->is_used()); | ||
| 2449 | 2449 | // Global variables do not need to be allocated. | |
| 2450 | 2450 | return !var->IsGlobalObjectProperty() && var->is_used(); | |
| 2451 | 2451 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2661,6 +2661,7 @@ typename ParserBase<Impl>::BlockT ParserBase<Impl>::ParseClassStaticBlock( | |||
| 2661 | 2661 | } | |
| 2662 | 2662 | ||
| 2663 | 2663 | FunctionState initializer_state(&function_state_, &scope_, initializer_scope); | |
| 2664 | + FunctionParsingScope body_parsing_scope(impl()); | ||
| 2664 | 2665 | AcceptINScope accept_in(this, true); | |
| 2665 | 2666 | ||
| 2666 | 2667 | // Each static block has its own var and lexical scope, so make a new var | |
| Back | FazBrowse Home | New Git URL |
0 commit comments