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.h" | 5 #include "src/ast.h" |
6 #include "src/messages.h" | 6 #include "src/messages.h" |
7 #include "src/parser.h" | 7 #include "src/parser.h" |
8 | 8 |
9 namespace v8 { | 9 namespace v8 { |
10 | 10 |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 NOT_A_PATTERN(Call) | 381 NOT_A_PATTERN(Call) |
382 NOT_A_PATTERN(CallNew) | 382 NOT_A_PATTERN(CallNew) |
383 NOT_A_PATTERN(CallRuntime) | 383 NOT_A_PATTERN(CallRuntime) |
384 NOT_A_PATTERN(CaseClause) | 384 NOT_A_PATTERN(CaseClause) |
385 NOT_A_PATTERN(ClassLiteral) | 385 NOT_A_PATTERN(ClassLiteral) |
386 NOT_A_PATTERN(CompareOperation) | 386 NOT_A_PATTERN(CompareOperation) |
387 NOT_A_PATTERN(Conditional) | 387 NOT_A_PATTERN(Conditional) |
388 NOT_A_PATTERN(ContinueStatement) | 388 NOT_A_PATTERN(ContinueStatement) |
389 NOT_A_PATTERN(CountOperation) | 389 NOT_A_PATTERN(CountOperation) |
390 NOT_A_PATTERN(DebuggerStatement) | 390 NOT_A_PATTERN(DebuggerStatement) |
| 391 NOT_A_PATTERN(DoExpression) |
391 NOT_A_PATTERN(DoWhileStatement) | 392 NOT_A_PATTERN(DoWhileStatement) |
392 NOT_A_PATTERN(EmptyStatement) | 393 NOT_A_PATTERN(EmptyStatement) |
393 NOT_A_PATTERN(EmptyParentheses) | 394 NOT_A_PATTERN(EmptyParentheses) |
394 NOT_A_PATTERN(ExportDeclaration) | 395 NOT_A_PATTERN(ExportDeclaration) |
395 NOT_A_PATTERN(ExpressionStatement) | 396 NOT_A_PATTERN(ExpressionStatement) |
396 NOT_A_PATTERN(ForInStatement) | 397 NOT_A_PATTERN(ForInStatement) |
397 NOT_A_PATTERN(ForOfStatement) | 398 NOT_A_PATTERN(ForOfStatement) |
398 NOT_A_PATTERN(ForStatement) | 399 NOT_A_PATTERN(ForStatement) |
399 NOT_A_PATTERN(FunctionDeclaration) | 400 NOT_A_PATTERN(FunctionDeclaration) |
400 NOT_A_PATTERN(FunctionLiteral) | 401 NOT_A_PATTERN(FunctionLiteral) |
(...skipping 15 matching lines...) Expand all Loading... |
416 NOT_A_PATTERN(TryFinallyStatement) | 417 NOT_A_PATTERN(TryFinallyStatement) |
417 NOT_A_PATTERN(UnaryOperation) | 418 NOT_A_PATTERN(UnaryOperation) |
418 NOT_A_PATTERN(VariableDeclaration) | 419 NOT_A_PATTERN(VariableDeclaration) |
419 NOT_A_PATTERN(WhileStatement) | 420 NOT_A_PATTERN(WhileStatement) |
420 NOT_A_PATTERN(WithStatement) | 421 NOT_A_PATTERN(WithStatement) |
421 NOT_A_PATTERN(Yield) | 422 NOT_A_PATTERN(Yield) |
422 | 423 |
423 #undef NOT_A_PATTERN | 424 #undef NOT_A_PATTERN |
424 } // namespace internal | 425 } // namespace internal |
425 } // namespace v8 | 426 } // namespace v8 |
OLD | NEW |