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

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

Issue 2108193003: [modules] AST and parser rework. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@anonymous-declarations
Patch Set: . Created 4 years, 5 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 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/parsing/parameter-initializer-rewriter.h" 7 #include "src/parsing/parameter-initializer-rewriter.h"
8 #include "src/parsing/parser.h" 8 #include "src/parsing/parser.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after
754 NOT_A_PATTERN(DoWhileStatement) 754 NOT_A_PATTERN(DoWhileStatement)
755 NOT_A_PATTERN(EmptyStatement) 755 NOT_A_PATTERN(EmptyStatement)
756 NOT_A_PATTERN(EmptyParentheses) 756 NOT_A_PATTERN(EmptyParentheses)
757 NOT_A_PATTERN(ExpressionStatement) 757 NOT_A_PATTERN(ExpressionStatement)
758 NOT_A_PATTERN(ForInStatement) 758 NOT_A_PATTERN(ForInStatement)
759 NOT_A_PATTERN(ForOfStatement) 759 NOT_A_PATTERN(ForOfStatement)
760 NOT_A_PATTERN(ForStatement) 760 NOT_A_PATTERN(ForStatement)
761 NOT_A_PATTERN(FunctionDeclaration) 761 NOT_A_PATTERN(FunctionDeclaration)
762 NOT_A_PATTERN(FunctionLiteral) 762 NOT_A_PATTERN(FunctionLiteral)
763 NOT_A_PATTERN(IfStatement) 763 NOT_A_PATTERN(IfStatement)
764 NOT_A_PATTERN(ImportDeclaration)
765 NOT_A_PATTERN(Literal) 764 NOT_A_PATTERN(Literal)
766 NOT_A_PATTERN(NativeFunctionLiteral) 765 NOT_A_PATTERN(NativeFunctionLiteral)
767 NOT_A_PATTERN(RegExpLiteral) 766 NOT_A_PATTERN(RegExpLiteral)
768 NOT_A_PATTERN(ReturnStatement) 767 NOT_A_PATTERN(ReturnStatement)
769 NOT_A_PATTERN(SloppyBlockFunctionStatement) 768 NOT_A_PATTERN(SloppyBlockFunctionStatement)
770 NOT_A_PATTERN(Spread) 769 NOT_A_PATTERN(Spread)
771 NOT_A_PATTERN(SuperPropertyReference) 770 NOT_A_PATTERN(SuperPropertyReference)
772 NOT_A_PATTERN(SuperCallReference) 771 NOT_A_PATTERN(SuperCallReference)
773 NOT_A_PATTERN(SwitchStatement) 772 NOT_A_PATTERN(SwitchStatement)
774 NOT_A_PATTERN(ThisFunction) 773 NOT_A_PATTERN(ThisFunction)
775 NOT_A_PATTERN(Throw) 774 NOT_A_PATTERN(Throw)
776 NOT_A_PATTERN(TryCatchStatement) 775 NOT_A_PATTERN(TryCatchStatement)
777 NOT_A_PATTERN(TryFinallyStatement) 776 NOT_A_PATTERN(TryFinallyStatement)
778 NOT_A_PATTERN(UnaryOperation) 777 NOT_A_PATTERN(UnaryOperation)
779 NOT_A_PATTERN(VariableDeclaration) 778 NOT_A_PATTERN(VariableDeclaration)
780 NOT_A_PATTERN(WhileStatement) 779 NOT_A_PATTERN(WhileStatement)
781 NOT_A_PATTERN(WithStatement) 780 NOT_A_PATTERN(WithStatement)
782 NOT_A_PATTERN(Yield) 781 NOT_A_PATTERN(Yield)
783 782
784 #undef NOT_A_PATTERN 783 #undef NOT_A_PATTERN
785 } // namespace internal 784 } // namespace internal
786 } // namespace v8 785 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698