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/objects-inl.h" | 7 #include "src/objects-inl.h" |
8 #include "src/parsing/parameter-initializer-rewriter.h" | 8 #include "src/parsing/parameter-initializer-rewriter.h" |
9 #include "src/parsing/parser.h" | 9 #include "src/parsing/parser.h" |
10 | 10 |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 NOT_A_PATTERN(EmptyStatement) | 724 NOT_A_PATTERN(EmptyStatement) |
725 NOT_A_PATTERN(EmptyParentheses) | 725 NOT_A_PATTERN(EmptyParentheses) |
726 NOT_A_PATTERN(ExpressionStatement) | 726 NOT_A_PATTERN(ExpressionStatement) |
727 NOT_A_PATTERN(ForInStatement) | 727 NOT_A_PATTERN(ForInStatement) |
728 NOT_A_PATTERN(ForOfStatement) | 728 NOT_A_PATTERN(ForOfStatement) |
729 NOT_A_PATTERN(ForStatement) | 729 NOT_A_PATTERN(ForStatement) |
730 NOT_A_PATTERN(FunctionDeclaration) | 730 NOT_A_PATTERN(FunctionDeclaration) |
731 NOT_A_PATTERN(FunctionLiteral) | 731 NOT_A_PATTERN(FunctionLiteral) |
732 NOT_A_PATTERN(GetIterator) | 732 NOT_A_PATTERN(GetIterator) |
733 NOT_A_PATTERN(IfStatement) | 733 NOT_A_PATTERN(IfStatement) |
| 734 NOT_A_PATTERN(InternalVariable) |
734 NOT_A_PATTERN(Literal) | 735 NOT_A_PATTERN(Literal) |
735 NOT_A_PATTERN(NativeFunctionLiteral) | 736 NOT_A_PATTERN(NativeFunctionLiteral) |
736 NOT_A_PATTERN(RegExpLiteral) | 737 NOT_A_PATTERN(RegExpLiteral) |
737 NOT_A_PATTERN(ReturnStatement) | 738 NOT_A_PATTERN(ReturnStatement) |
738 NOT_A_PATTERN(SloppyBlockFunctionStatement) | 739 NOT_A_PATTERN(SloppyBlockFunctionStatement) |
739 NOT_A_PATTERN(Spread) | 740 NOT_A_PATTERN(Spread) |
740 NOT_A_PATTERN(SuperPropertyReference) | 741 NOT_A_PATTERN(SuperPropertyReference) |
741 NOT_A_PATTERN(SuperCallReference) | 742 NOT_A_PATTERN(SuperCallReference) |
742 NOT_A_PATTERN(SwitchStatement) | 743 NOT_A_PATTERN(SwitchStatement) |
743 NOT_A_PATTERN(ThisFunction) | 744 NOT_A_PATTERN(ThisFunction) |
744 NOT_A_PATTERN(Throw) | 745 NOT_A_PATTERN(Throw) |
745 NOT_A_PATTERN(TryCatchStatement) | 746 NOT_A_PATTERN(TryCatchStatement) |
746 NOT_A_PATTERN(TryFinallyStatement) | 747 NOT_A_PATTERN(TryFinallyStatement) |
747 NOT_A_PATTERN(UnaryOperation) | 748 NOT_A_PATTERN(UnaryOperation) |
748 NOT_A_PATTERN(VariableDeclaration) | 749 NOT_A_PATTERN(VariableDeclaration) |
749 NOT_A_PATTERN(WhileStatement) | 750 NOT_A_PATTERN(WhileStatement) |
750 NOT_A_PATTERN(WithStatement) | 751 NOT_A_PATTERN(WithStatement) |
751 NOT_A_PATTERN(Yield) | 752 NOT_A_PATTERN(Yield) |
752 | 753 |
753 #undef NOT_A_PATTERN | 754 #undef NOT_A_PATTERN |
754 } // namespace internal | 755 } // namespace internal |
755 } // namespace v8 | 756 } // namespace v8 |
OLD | NEW |