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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 NOT_A_PATTERN(ClassLiteral) | 724 NOT_A_PATTERN(ClassLiteral) |
725 NOT_A_PATTERN(CompareOperation) | 725 NOT_A_PATTERN(CompareOperation) |
726 NOT_A_PATTERN(Conditional) | 726 NOT_A_PATTERN(Conditional) |
727 NOT_A_PATTERN(ContinueStatement) | 727 NOT_A_PATTERN(ContinueStatement) |
728 NOT_A_PATTERN(CountOperation) | 728 NOT_A_PATTERN(CountOperation) |
729 NOT_A_PATTERN(DebuggerStatement) | 729 NOT_A_PATTERN(DebuggerStatement) |
730 NOT_A_PATTERN(DoExpression) | 730 NOT_A_PATTERN(DoExpression) |
731 NOT_A_PATTERN(DoWhileStatement) | 731 NOT_A_PATTERN(DoWhileStatement) |
732 NOT_A_PATTERN(EmptyStatement) | 732 NOT_A_PATTERN(EmptyStatement) |
733 NOT_A_PATTERN(EmptyParentheses) | 733 NOT_A_PATTERN(EmptyParentheses) |
734 NOT_A_PATTERN(ExportDeclaration) | |
735 NOT_A_PATTERN(ExpressionStatement) | 734 NOT_A_PATTERN(ExpressionStatement) |
736 NOT_A_PATTERN(ForInStatement) | 735 NOT_A_PATTERN(ForInStatement) |
737 NOT_A_PATTERN(ForOfStatement) | 736 NOT_A_PATTERN(ForOfStatement) |
738 NOT_A_PATTERN(ForStatement) | 737 NOT_A_PATTERN(ForStatement) |
739 NOT_A_PATTERN(FunctionDeclaration) | 738 NOT_A_PATTERN(FunctionDeclaration) |
740 NOT_A_PATTERN(FunctionLiteral) | 739 NOT_A_PATTERN(FunctionLiteral) |
741 NOT_A_PATTERN(IfStatement) | 740 NOT_A_PATTERN(IfStatement) |
742 NOT_A_PATTERN(ImportDeclaration) | 741 NOT_A_PATTERN(ImportDeclaration) |
743 NOT_A_PATTERN(Literal) | 742 NOT_A_PATTERN(Literal) |
744 NOT_A_PATTERN(NativeFunctionLiteral) | 743 NOT_A_PATTERN(NativeFunctionLiteral) |
(...skipping 10 matching lines...) Expand all Loading... |
755 NOT_A_PATTERN(TryFinallyStatement) | 754 NOT_A_PATTERN(TryFinallyStatement) |
756 NOT_A_PATTERN(UnaryOperation) | 755 NOT_A_PATTERN(UnaryOperation) |
757 NOT_A_PATTERN(VariableDeclaration) | 756 NOT_A_PATTERN(VariableDeclaration) |
758 NOT_A_PATTERN(WhileStatement) | 757 NOT_A_PATTERN(WhileStatement) |
759 NOT_A_PATTERN(WithStatement) | 758 NOT_A_PATTERN(WithStatement) |
760 NOT_A_PATTERN(Yield) | 759 NOT_A_PATTERN(Yield) |
761 | 760 |
762 #undef NOT_A_PATTERN | 761 #undef NOT_A_PATTERN |
763 } // namespace internal | 762 } // namespace internal |
764 } // namespace v8 | 763 } // namespace v8 |
OLD | NEW |