| 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/v8.h" | |
| 6 | |
| 7 #include "src/ast.h" | 5 #include "src/ast.h" |
| 8 #include "src/ast-numbering.h" | 6 #include "src/ast-numbering.h" |
| 9 #include "src/code-factory.h" | 7 #include "src/code-factory.h" |
| 10 #include "src/codegen.h" | 8 #include "src/codegen.h" |
| 11 #include "src/compiler.h" | 9 #include "src/compiler.h" |
| 12 #include "src/debug/debug.h" | 10 #include "src/debug/debug.h" |
| 13 #include "src/debug/liveedit.h" | 11 #include "src/debug/liveedit.h" |
| 14 #include "src/full-codegen/full-codegen.h" | 12 #include "src/full-codegen/full-codegen.h" |
| 15 #include "src/macro-assembler.h" | 13 #include "src/macro-assembler.h" |
| 16 #include "src/prettyprinter.h" | 14 #include "src/prettyprinter.h" |
| (...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1587 codegen_->PrepareForBailoutForId(exit_id_, NO_REGISTERS); | 1585 codegen_->PrepareForBailoutForId(exit_id_, NO_REGISTERS); |
| 1588 codegen_->scope_ = saved_scope_; | 1586 codegen_->scope_ = saved_scope_; |
| 1589 } | 1587 } |
| 1590 | 1588 |
| 1591 | 1589 |
| 1592 #undef __ | 1590 #undef __ |
| 1593 | 1591 |
| 1594 | 1592 |
| 1595 } // namespace internal | 1593 } // namespace internal |
| 1596 } // namespace v8 | 1594 } // namespace v8 |
| OLD | NEW |