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" | 5 #include "src/v8.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" |
11 #include "src/compiler.h" | 11 #include "src/compiler.h" |
12 #include "src/debug.h" | 12 #include "src/debug.h" |
13 #include "src/full-codegen.h" | 13 #include "src/full-codegen.h" |
14 #include "src/liveedit.h" | 14 #include "src/liveedit.h" |
15 #include "src/macro-assembler.h" | 15 #include "src/macro-assembler.h" |
16 #include "src/prettyprinter.h" | 16 #include "src/prettyprinter.h" |
17 #include "src/scopeinfo.h" | 17 #include "src/scopeinfo.h" |
18 #include "src/scopes.h" | 18 #include "src/scopes.h" |
19 #include "src/snapshot.h" | 19 #include "src/snapshot/snapshot.h" |
20 | 20 |
21 namespace v8 { | 21 namespace v8 { |
22 namespace internal { | 22 namespace internal { |
23 | 23 |
24 void BreakableStatementChecker::Check(Statement* stmt) { | 24 void BreakableStatementChecker::Check(Statement* stmt) { |
25 Visit(stmt); | 25 Visit(stmt); |
26 } | 26 } |
27 | 27 |
28 | 28 |
29 void BreakableStatementChecker::Check(Expression* expr) { | 29 void BreakableStatementChecker::Check(Expression* expr) { |
(...skipping 1793 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1823 } | 1823 } |
1824 codegen_->PrepareForBailoutForId(exit_id_, NO_REGISTERS); | 1824 codegen_->PrepareForBailoutForId(exit_id_, NO_REGISTERS); |
1825 codegen_->scope_ = saved_scope_; | 1825 codegen_->scope_ = saved_scope_; |
1826 } | 1826 } |
1827 | 1827 |
1828 | 1828 |
1829 #undef __ | 1829 #undef __ |
1830 | 1830 |
1831 | 1831 |
1832 } } // namespace v8::internal | 1832 } } // namespace v8::internal |
OLD | NEW |