| 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" |
| 6 |
| 5 #include "src/ast.h" | 7 #include "src/ast.h" |
| 6 #include "src/ast-numbering.h" | 8 #include "src/ast-numbering.h" |
| 7 #include "src/code-factory.h" | 9 #include "src/code-factory.h" |
| 8 #include "src/codegen.h" | 10 #include "src/codegen.h" |
| 9 #include "src/compiler.h" | 11 #include "src/compiler.h" |
| 10 #include "src/debug/debug.h" | 12 #include "src/debug/debug.h" |
| 11 #include "src/debug/liveedit.h" | 13 #include "src/debug/liveedit.h" |
| 12 #include "src/full-codegen/full-codegen.h" | 14 #include "src/isolate-inl.h" |
| 13 #include "src/macro-assembler.h" | 15 #include "src/macro-assembler.h" |
| 14 #include "src/prettyprinter.h" | 16 #include "src/prettyprinter.h" |
| 15 #include "src/scopeinfo.h" | 17 #include "src/scopeinfo.h" |
| 16 #include "src/scopes.h" | 18 #include "src/scopes.h" |
| 17 #include "src/snapshot/snapshot.h" | 19 #include "src/snapshot/snapshot.h" |
| 18 | 20 |
| 19 namespace v8 { | 21 namespace v8 { |
| 20 namespace internal { | 22 namespace internal { |
| 21 | 23 |
| 22 #define __ ACCESS_MASM(masm()) | 24 #define __ ACCESS_MASM(masm()) |
| (...skipping 1624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1647 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || | 1649 return var->mode() == CONST_LEGACY || var->scope()->is_nonlinear() || |
| 1648 var->initializer_position() >= proxy->position(); | 1650 var->initializer_position() >= proxy->position(); |
| 1649 } | 1651 } |
| 1650 | 1652 |
| 1651 | 1653 |
| 1652 #undef __ | 1654 #undef __ |
| 1653 | 1655 |
| 1654 | 1656 |
| 1655 } // namespace internal | 1657 } // namespace internal |
| 1656 } // namespace v8 | 1658 } // namespace v8 |
| OLD | NEW |