| 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/parsing/parser.h" | 5 #include "src/parsing/parser.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "src/api.h" | 9 #include "src/api.h" |
| 10 #include "src/ast/ast-expression-rewriter.h" | 10 #include "src/ast/ast-expression-rewriter.h" |
| 11 #include "src/ast/ast-function-literal-id-reindexer.h" | 11 #include "src/ast/ast-function-literal-id-reindexer.h" |
| 12 #include "src/ast/ast-literal-reindexer.h" | 12 #include "src/ast/ast-literal-reindexer.h" |
| 13 #include "src/ast/ast-traversal-visitor.h" | 13 #include "src/ast/ast-traversal-visitor.h" |
| 14 #include "src/ast/ast.h" | 14 #include "src/ast/ast.h" |
| 15 #include "src/bailout-reason.h" | 15 #include "src/bailout-reason.h" |
| 16 #include "src/base/platform/platform.h" | 16 #include "src/base/platform/platform.h" |
| 17 #include "src/char-predicates-inl.h" | 17 #include "src/char-predicates-inl.h" |
| 18 #include "src/messages.h" | 18 #include "src/messages.h" |
| 19 #include "src/objects-inl.h" |
| 19 #include "src/parsing/duplicate-finder.h" | 20 #include "src/parsing/duplicate-finder.h" |
| 20 #include "src/parsing/parameter-initializer-rewriter.h" | 21 #include "src/parsing/parameter-initializer-rewriter.h" |
| 21 #include "src/parsing/parse-info.h" | 22 #include "src/parsing/parse-info.h" |
| 22 #include "src/parsing/rewriter.h" | 23 #include "src/parsing/rewriter.h" |
| 23 #include "src/parsing/scanner-character-streams.h" | 24 #include "src/parsing/scanner-character-streams.h" |
| 24 #include "src/runtime/runtime.h" | 25 #include "src/runtime/runtime.h" |
| 25 #include "src/string-stream.h" | 26 #include "src/string-stream.h" |
| 26 #include "src/tracing/trace-event.h" | 27 #include "src/tracing/trace-event.h" |
| 27 | 28 |
| 28 namespace v8 { | 29 namespace v8 { |
| (...skipping 5103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5132 | 5133 |
| 5133 return final_loop; | 5134 return final_loop; |
| 5134 } | 5135 } |
| 5135 | 5136 |
| 5136 #undef CHECK_OK | 5137 #undef CHECK_OK |
| 5137 #undef CHECK_OK_VOID | 5138 #undef CHECK_OK_VOID |
| 5138 #undef CHECK_FAILED | 5139 #undef CHECK_FAILED |
| 5139 | 5140 |
| 5140 } // namespace internal | 5141 } // namespace internal |
| 5141 } // namespace v8 | 5142 } // namespace v8 |
| OLD | NEW |