| 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(DoWhileStatement) | 752 NOT_A_PATTERN(DoWhileStatement) |
| 753 NOT_A_PATTERN(EmptyStatement) | 753 NOT_A_PATTERN(EmptyStatement) |
| 754 NOT_A_PATTERN(EmptyParentheses) | 754 NOT_A_PATTERN(EmptyParentheses) |
| 755 NOT_A_PATTERN(ExpressionStatement) | 755 NOT_A_PATTERN(ExpressionStatement) |
| 756 NOT_A_PATTERN(ForInStatement) | 756 NOT_A_PATTERN(ForInStatement) |
| 757 NOT_A_PATTERN(ForOfStatement) | 757 NOT_A_PATTERN(ForOfStatement) |
| 758 NOT_A_PATTERN(ForStatement) | 758 NOT_A_PATTERN(ForStatement) |
| 759 NOT_A_PATTERN(FunctionDeclaration) | 759 NOT_A_PATTERN(FunctionDeclaration) |
| 760 NOT_A_PATTERN(FunctionLiteral) | 760 NOT_A_PATTERN(FunctionLiteral) |
| 761 NOT_A_PATTERN(IfStatement) | 761 NOT_A_PATTERN(IfStatement) |
| 762 NOT_A_PATTERN(ImportDeclaration) | |
| 763 NOT_A_PATTERN(Literal) | 762 NOT_A_PATTERN(Literal) |
| 764 NOT_A_PATTERN(NativeFunctionLiteral) | 763 NOT_A_PATTERN(NativeFunctionLiteral) |
| 765 NOT_A_PATTERN(RegExpLiteral) | 764 NOT_A_PATTERN(RegExpLiteral) |
| 766 NOT_A_PATTERN(ReturnStatement) | 765 NOT_A_PATTERN(ReturnStatement) |
| 767 NOT_A_PATTERN(SloppyBlockFunctionStatement) | 766 NOT_A_PATTERN(SloppyBlockFunctionStatement) |
| 768 NOT_A_PATTERN(Spread) | 767 NOT_A_PATTERN(Spread) |
| 769 NOT_A_PATTERN(SuperPropertyReference) | 768 NOT_A_PATTERN(SuperPropertyReference) |
| 770 NOT_A_PATTERN(SuperCallReference) | 769 NOT_A_PATTERN(SuperCallReference) |
| 771 NOT_A_PATTERN(SwitchStatement) | 770 NOT_A_PATTERN(SwitchStatement) |
| 772 NOT_A_PATTERN(ThisFunction) | 771 NOT_A_PATTERN(ThisFunction) |
| 773 NOT_A_PATTERN(Throw) | 772 NOT_A_PATTERN(Throw) |
| 774 NOT_A_PATTERN(TryCatchStatement) | 773 NOT_A_PATTERN(TryCatchStatement) |
| 775 NOT_A_PATTERN(TryFinallyStatement) | 774 NOT_A_PATTERN(TryFinallyStatement) |
| 776 NOT_A_PATTERN(UnaryOperation) | 775 NOT_A_PATTERN(UnaryOperation) |
| 777 NOT_A_PATTERN(VariableDeclaration) | 776 NOT_A_PATTERN(VariableDeclaration) |
| 778 NOT_A_PATTERN(WhileStatement) | 777 NOT_A_PATTERN(WhileStatement) |
| 779 NOT_A_PATTERN(WithStatement) | 778 NOT_A_PATTERN(WithStatement) |
| 780 NOT_A_PATTERN(Yield) | 779 NOT_A_PATTERN(Yield) |
| 781 | 780 |
| 782 #undef NOT_A_PATTERN | 781 #undef NOT_A_PATTERN |
| 783 } // namespace internal | 782 } // namespace internal |
| 784 } // namespace v8 | 783 } // namespace v8 |
| OLD | NEW |