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

Side by Side Diff: pkg/analyzer/test/services/data/stmt_tests.data

Issue 136453008: Interpolated String hack-around. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « pkg/analyzer/lib/src/services/writer.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 >>> 1 >>>
2 if (x && 2 if (x &&
3 y) { 3 y) {
4 print('!'); 4 print('!');
5 } 5 }
6 <<< 6 <<<
7 if (x && y) { 7 if (x && y) {
8 print('!'); 8 print('!');
9 } 9 }
10 >>> 10 >>>
(...skipping 18 matching lines...) Expand all
29 for (x in xs) { 29 for (x in xs) {
30 print(x); 30 print(x);
31 } 31 }
32 <<< 32 <<<
33 for (x in xs) { 33 for (x in xs) {
34 print(x); 34 print(x);
35 } 35 }
36 >>> TODO(pquitslund): FIX 36 >>> TODO(pquitslund): FIX
37 var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61 , 67, 71]; 37 var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61 , 67, 71];
38 <<< 38 <<<
39 var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61 , 67, 71]; 39 var primes = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61 , 67, 71];
40 >>> TODO(pquitslund): placeholder for when we turn the real line breaker on
41 blah() {
42 print('blah blah blah blah blah blah blah blah blah blah blah blah blah blah $ foo');
43 }
44 <<<<
45 blah() {
46 print('blah blah blah blah blah blah blah blah blah blah blah blah blah blah $ foo');
47 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/services/writer.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698