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

Side by Side Diff: packages/dart_style/test/regression/0100/0115.stmt

Issue 1400473008: Roll Observatory packages and add a roll script (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: 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
OLDNEW
(Empty)
1 >>>
2 assert(
3 // Indexing send-sets have an argument for the index.
4 (selector.isIndexSet ? 1 : 0) +
5 // Non-increment send-sets have one more argument.
6 (ast.Operator.INCREMENT_OPERATORS.contains(op.source) ? 0 :
7 1) == node.argumentCount());
8 <<<
9 assert(
10 // Indexing send-sets have an argument for the index.
11 (selector.isIndexSet ? 1 : 0) +
12 // Non-increment send-sets have one more argument.
13 (ast.Operator.INCREMENT_OPERATORS.contains(op.source) ? 0 : 1) ==
14 node.argumentCount());
15 >>> (indent 4)
16 assert(
17 // Indexing send-sets have an argument for the index.
18 (selector.isIndexSet ? 1 : 0) +
19 // Non-increment send-sets have one more argument.
20 (ast.Operator.INCREMENT_OPERATORS.contains(op.source) ? 0 :
21 1) == node.argumentCount());
22 <<<
23 assert(
24 // Indexing send-sets have an argument for the index.
25 (selector.isIndexSet ? 1 : 0) +
26 // Non-increment send-sets have one more argument.
27 (ast.Operator.INCREMENT_OPERATORS.contains(op.source)
28 ? 0
29 : 1) ==
30 node.argumentCount());
OLDNEW
« no previous file with comments | « packages/dart_style/test/regression/0100/0114.unit ('k') | packages/dart_style/test/regression/0100/0119.stmt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698