Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Side by Side Diff: src/parsing/pattern-rewriter.cc

Issue 2703563002: [ESNext] Implement DynamicImportCall (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/parsing/parser-base.h ('k') | src/parsing/preparser.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 726 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 NOT_A_PATTERN(EmptyStatement) 737 NOT_A_PATTERN(EmptyStatement)
738 NOT_A_PATTERN(EmptyParentheses) 738 NOT_A_PATTERN(EmptyParentheses)
739 NOT_A_PATTERN(ExpressionStatement) 739 NOT_A_PATTERN(ExpressionStatement)
740 NOT_A_PATTERN(ForInStatement) 740 NOT_A_PATTERN(ForInStatement)
741 NOT_A_PATTERN(ForOfStatement) 741 NOT_A_PATTERN(ForOfStatement)
742 NOT_A_PATTERN(ForStatement) 742 NOT_A_PATTERN(ForStatement)
743 NOT_A_PATTERN(FunctionDeclaration) 743 NOT_A_PATTERN(FunctionDeclaration)
744 NOT_A_PATTERN(FunctionLiteral) 744 NOT_A_PATTERN(FunctionLiteral)
745 NOT_A_PATTERN(GetIterator) 745 NOT_A_PATTERN(GetIterator)
746 NOT_A_PATTERN(IfStatement) 746 NOT_A_PATTERN(IfStatement)
747 NOT_A_PATTERN(ImportCallExpression)
747 NOT_A_PATTERN(Literal) 748 NOT_A_PATTERN(Literal)
748 NOT_A_PATTERN(NativeFunctionLiteral) 749 NOT_A_PATTERN(NativeFunctionLiteral)
749 NOT_A_PATTERN(RegExpLiteral) 750 NOT_A_PATTERN(RegExpLiteral)
750 NOT_A_PATTERN(ReturnStatement) 751 NOT_A_PATTERN(ReturnStatement)
751 NOT_A_PATTERN(SloppyBlockFunctionStatement) 752 NOT_A_PATTERN(SloppyBlockFunctionStatement)
752 NOT_A_PATTERN(Spread) 753 NOT_A_PATTERN(Spread)
753 NOT_A_PATTERN(SuperPropertyReference) 754 NOT_A_PATTERN(SuperPropertyReference)
754 NOT_A_PATTERN(SuperCallReference) 755 NOT_A_PATTERN(SuperCallReference)
755 NOT_A_PATTERN(SwitchStatement) 756 NOT_A_PATTERN(SwitchStatement)
756 NOT_A_PATTERN(ThisFunction) 757 NOT_A_PATTERN(ThisFunction)
757 NOT_A_PATTERN(Throw) 758 NOT_A_PATTERN(Throw)
758 NOT_A_PATTERN(TryCatchStatement) 759 NOT_A_PATTERN(TryCatchStatement)
759 NOT_A_PATTERN(TryFinallyStatement) 760 NOT_A_PATTERN(TryFinallyStatement)
760 NOT_A_PATTERN(UnaryOperation) 761 NOT_A_PATTERN(UnaryOperation)
761 NOT_A_PATTERN(VariableDeclaration) 762 NOT_A_PATTERN(VariableDeclaration)
762 NOT_A_PATTERN(WhileStatement) 763 NOT_A_PATTERN(WhileStatement)
763 NOT_A_PATTERN(WithStatement) 764 NOT_A_PATTERN(WithStatement)
764 NOT_A_PATTERN(Suspend) 765 NOT_A_PATTERN(Suspend)
765 766
766 #undef NOT_A_PATTERN 767 #undef NOT_A_PATTERN
767 } // namespace internal 768 } // namespace internal
768 } // namespace v8 769 } // namespace v8
OLDNEW
« no previous file with comments | « src/parsing/parser-base.h ('k') | src/parsing/preparser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698