| 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-literal-reindexer.h" | 11 #include "src/ast/ast-literal-reindexer.h" |
| 12 #include "src/ast/ast-traversal-visitor.h" | 12 #include "src/ast/ast-traversal-visitor.h" |
| 13 #include "src/ast/ast.h" | 13 #include "src/ast/ast.h" |
| 14 #include "src/bailout-reason.h" | 14 #include "src/bailout-reason.h" |
| 15 #include "src/base/platform/platform.h" | 15 #include "src/base/platform/platform.h" |
| 16 #include "src/char-predicates-inl.h" | 16 #include "src/char-predicates-inl.h" |
| 17 #include "src/messages.h" | 17 #include "src/messages.h" |
| 18 #include "src/parsing/duplicate-finder.h" |
| 18 #include "src/parsing/parameter-initializer-rewriter.h" | 19 #include "src/parsing/parameter-initializer-rewriter.h" |
| 19 #include "src/parsing/parse-info.h" | 20 #include "src/parsing/parse-info.h" |
| 20 #include "src/parsing/rewriter.h" | 21 #include "src/parsing/rewriter.h" |
| 21 #include "src/parsing/scanner-character-streams.h" | 22 #include "src/parsing/scanner-character-streams.h" |
| 22 #include "src/runtime/runtime.h" | 23 #include "src/runtime/runtime.h" |
| 23 #include "src/string-stream.h" | 24 #include "src/string-stream.h" |
| 24 #include "src/tracing/trace-event.h" | 25 #include "src/tracing/trace-event.h" |
| 25 | 26 |
| 26 namespace v8 { | 27 namespace v8 { |
| 27 namespace internal { | 28 namespace internal { |
| (...skipping 6813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6841 node->Print(Isolate::Current()); | 6842 node->Print(Isolate::Current()); |
| 6842 } | 6843 } |
| 6843 #endif // DEBUG | 6844 #endif // DEBUG |
| 6844 | 6845 |
| 6845 #undef CHECK_OK | 6846 #undef CHECK_OK |
| 6846 #undef CHECK_OK_VOID | 6847 #undef CHECK_OK_VOID |
| 6847 #undef CHECK_FAILED | 6848 #undef CHECK_FAILED |
| 6848 | 6849 |
| 6849 } // namespace internal | 6850 } // namespace internal |
| 6850 } // namespace v8 | 6851 } // namespace v8 |
| OLD | NEW |