OLD | NEW |
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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
752 NOT_A_PATTERN(ClassLiteral) | 752 NOT_A_PATTERN(ClassLiteral) |
753 NOT_A_PATTERN(CompareOperation) | 753 NOT_A_PATTERN(CompareOperation) |
754 NOT_A_PATTERN(Conditional) | 754 NOT_A_PATTERN(Conditional) |
755 NOT_A_PATTERN(ContinueStatement) | 755 NOT_A_PATTERN(ContinueStatement) |
756 NOT_A_PATTERN(CountOperation) | 756 NOT_A_PATTERN(CountOperation) |
757 NOT_A_PATTERN(DebuggerStatement) | 757 NOT_A_PATTERN(DebuggerStatement) |
758 NOT_A_PATTERN(DoExpression) | 758 NOT_A_PATTERN(DoExpression) |
759 NOT_A_PATTERN(DoWhileStatement) | 759 NOT_A_PATTERN(DoWhileStatement) |
760 NOT_A_PATTERN(EmptyStatement) | 760 NOT_A_PATTERN(EmptyStatement) |
761 NOT_A_PATTERN(EmptyParentheses) | 761 NOT_A_PATTERN(EmptyParentheses) |
762 NOT_A_PATTERN(ExportDeclaration) | |
763 NOT_A_PATTERN(ExpressionStatement) | 762 NOT_A_PATTERN(ExpressionStatement) |
764 NOT_A_PATTERN(ForInStatement) | 763 NOT_A_PATTERN(ForInStatement) |
765 NOT_A_PATTERN(ForOfStatement) | 764 NOT_A_PATTERN(ForOfStatement) |
766 NOT_A_PATTERN(ForStatement) | 765 NOT_A_PATTERN(ForStatement) |
767 NOT_A_PATTERN(FunctionDeclaration) | 766 NOT_A_PATTERN(FunctionDeclaration) |
768 NOT_A_PATTERN(FunctionLiteral) | 767 NOT_A_PATTERN(FunctionLiteral) |
769 NOT_A_PATTERN(IfStatement) | 768 NOT_A_PATTERN(IfStatement) |
770 NOT_A_PATTERN(ImportDeclaration) | 769 NOT_A_PATTERN(ImportDeclaration) |
771 NOT_A_PATTERN(Literal) | 770 NOT_A_PATTERN(Literal) |
772 NOT_A_PATTERN(NativeFunctionLiteral) | 771 NOT_A_PATTERN(NativeFunctionLiteral) |
(...skipping 10 matching lines...) Expand all Loading... |
783 NOT_A_PATTERN(TryFinallyStatement) | 782 NOT_A_PATTERN(TryFinallyStatement) |
784 NOT_A_PATTERN(UnaryOperation) | 783 NOT_A_PATTERN(UnaryOperation) |
785 NOT_A_PATTERN(VariableDeclaration) | 784 NOT_A_PATTERN(VariableDeclaration) |
786 NOT_A_PATTERN(WhileStatement) | 785 NOT_A_PATTERN(WhileStatement) |
787 NOT_A_PATTERN(WithStatement) | 786 NOT_A_PATTERN(WithStatement) |
788 NOT_A_PATTERN(Yield) | 787 NOT_A_PATTERN(Yield) |
789 | 788 |
790 #undef NOT_A_PATTERN | 789 #undef NOT_A_PATTERN |
791 } // namespace internal | 790 } // namespace internal |
792 } // namespace v8 | 791 } // namespace v8 |
OLD | NEW |