OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/full-codegen/full-codegen.h" | 5 #include "src/full-codegen/full-codegen.h" |
6 | 6 |
7 #include "src/ast.h" | 7 #include "src/ast.h" |
8 #include "src/ast-numbering.h" | 8 #include "src/ast-numbering.h" |
9 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1266 VisitForStackValue(lit->constructor()); | 1266 VisitForStackValue(lit->constructor()); |
1267 | 1267 |
1268 __ Push(Smi::FromInt(lit->start_position())); | 1268 __ Push(Smi::FromInt(lit->start_position())); |
1269 __ Push(Smi::FromInt(lit->end_position())); | 1269 __ Push(Smi::FromInt(lit->end_position())); |
1270 | 1270 |
1271 __ CallRuntime(Runtime::kDefineClass, 5); | 1271 __ CallRuntime(Runtime::kDefineClass, 5); |
1272 PrepareForBailoutForId(lit->CreateLiteralId(), TOS_REG); | 1272 PrepareForBailoutForId(lit->CreateLiteralId(), TOS_REG); |
1273 | 1273 |
1274 EmitClassDefineProperties(lit); | 1274 EmitClassDefineProperties(lit); |
1275 | 1275 |
1276 if (lit->class_variable_proxy() != nullptr) { | 1276 if (lit->scope() != NULL) { |
| 1277 DCHECK_NOT_NULL(lit->class_variable_proxy()); |
1277 EmitVariableAssignment(lit->class_variable_proxy()->var(), | 1278 EmitVariableAssignment(lit->class_variable_proxy()->var(), |
1278 Token::INIT_CONST, lit->ProxySlot()); | 1279 Token::INIT_CONST, lit->ProxySlot()); |
1279 } | 1280 } |
1280 } | 1281 } |
1281 | 1282 |
1282 context()->Plug(result_register()); | 1283 context()->Plug(result_register()); |
1283 } | 1284 } |
1284 | 1285 |
1285 | 1286 |
1286 void FullCodeGenerator::VisitNativeFunctionLiteral( | 1287 void FullCodeGenerator::VisitNativeFunctionLiteral( |
(...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1607 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || | 1608 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || |
1608 var->initializer_position() >= proxy->position(); | 1609 var->initializer_position() >= proxy->position(); |
1609 } | 1610 } |
1610 | 1611 |
1611 | 1612 |
1612 #undef __ | 1613 #undef __ |
1613 | 1614 |
1614 | 1615 |
1615 } // namespace internal | 1616 } // namespace internal |
1616 } // namespace v8 | 1617 } // namespace v8 |
OLD | NEW |