Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Side by Side Diff: src/parsing/parser.cc

Issue 2281443002: Separate DuplicateFinder from Scanner. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698