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

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

Issue 1399893002: [es7] implement |do| expressions proposal (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Some cleanup Created 5 years, 2 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/parser.cc ('k') | src/preparser.h » ('j') | src/preparser.h » ('J')
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.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
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
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
OLDNEW
« no previous file with comments | « src/parser.cc ('k') | src/preparser.h » ('j') | src/preparser.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698