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

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: Fix rebase. 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
« no previous file with comments | « src/parsing/expression-classifier.h ('k') | src/parsing/preparser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 6620 matching lines...) Expand 10 before | Expand all | Expand 10 after
6648 node->Print(Isolate::Current()); 6649 node->Print(Isolate::Current());
6649 } 6650 }
6650 #endif // DEBUG 6651 #endif // DEBUG
6651 6652
6652 #undef CHECK_OK 6653 #undef CHECK_OK
6653 #undef CHECK_OK_VOID 6654 #undef CHECK_OK_VOID
6654 #undef CHECK_FAILED 6655 #undef CHECK_FAILED
6655 6656
6656 } // namespace internal 6657 } // namespace internal
6657 } // namespace v8 6658 } // namespace v8
OLDNEW
« no previous file with comments | « src/parsing/expression-classifier.h ('k') | src/parsing/preparser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698