| Index: src/full-codegen/full-codegen.cc
|
| diff --git a/src/full-codegen/full-codegen.cc b/src/full-codegen/full-codegen.cc
|
| index 54a862475f0ac27a1551d3c5ef9b9fc06151e863..cd43516c71ed54942d76c30478769001f6dd7426 100644
|
| --- a/src/full-codegen/full-codegen.cc
|
| +++ b/src/full-codegen/full-codegen.cc
|
| @@ -88,6 +88,7 @@ bool FullCodeGenerator::MakeCode(CompilationInfo* info, uintptr_t stack_limit) {
|
|
|
| DCHECK(!info->shared_info()->must_use_ignition_turbo());
|
| DCHECK(!FLAG_minimal);
|
| + DCHECK_NULL(info->literal()->parameter_init_block());
|
| RuntimeCallTimerScope runtimeTimer(isolate,
|
| &RuntimeCallStats::CompileFullCode);
|
| TimerEventScope<TimerEventCompileFullCode> timer(info->isolate());
|
| @@ -1447,6 +1448,10 @@ void FullCodeGenerator::VisitEmptyParentheses(EmptyParentheses* expr) {
|
|
|
| void FullCodeGenerator::VisitGetIterator(GetIterator* expr) { UNREACHABLE(); }
|
|
|
| +void FullCodeGenerator::VisitInternalVariable(InternalVariable* expr) {
|
| + UNREACHABLE();
|
| +}
|
| +
|
| void FullCodeGenerator::VisitRewritableExpression(RewritableExpression* expr) {
|
| Visit(expr->expression());
|
| }
|
|
|