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

Side by Side Diff: src/parsing/pattern-rewriter.cc

Issue 2622503002: include fixing: api.h shouldn't include objects-inl.h (Closed)
Patch Set: static type check Created 3 years, 11 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/parsing.cc ('k') | src/parsing/preparse-data.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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/ast/ast.h" 5 #include "src/ast/ast.h"
6 #include "src/messages.h" 6 #include "src/messages.h"
7 #include "src/objects-inl.h"
7 #include "src/parsing/parameter-initializer-rewriter.h" 8 #include "src/parsing/parameter-initializer-rewriter.h"
8 #include "src/parsing/parser.h" 9 #include "src/parsing/parser.h"
9 10
10 namespace v8 { 11 namespace v8 {
11 12
12 namespace internal { 13 namespace internal {
13 14
14 void Parser::PatternRewriter::DeclareAndInitializeVariables( 15 void Parser::PatternRewriter::DeclareAndInitializeVariables(
15 Parser* parser, Block* block, 16 Parser* parser, Block* block,
16 const DeclarationDescriptor* declaration_descriptor, 17 const DeclarationDescriptor* declaration_descriptor,
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 NOT_A_PATTERN(TryFinallyStatement) 692 NOT_A_PATTERN(TryFinallyStatement)
692 NOT_A_PATTERN(UnaryOperation) 693 NOT_A_PATTERN(UnaryOperation)
693 NOT_A_PATTERN(VariableDeclaration) 694 NOT_A_PATTERN(VariableDeclaration)
694 NOT_A_PATTERN(WhileStatement) 695 NOT_A_PATTERN(WhileStatement)
695 NOT_A_PATTERN(WithStatement) 696 NOT_A_PATTERN(WithStatement)
696 NOT_A_PATTERN(Yield) 697 NOT_A_PATTERN(Yield)
697 698
698 #undef NOT_A_PATTERN 699 #undef NOT_A_PATTERN
699 } // namespace internal 700 } // namespace internal
700 } // namespace v8 701 } // namespace v8
OLDNEW
« no previous file with comments | « src/parsing/parsing.cc ('k') | src/parsing/preparse-data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698