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

Side by Side Diff: pkg/front_end/testcases/rasta/issue_000004.dart.dartk.expect

Issue 2980883003: Remove code associated with the old "kompile" functionality. (Closed)
Patch Set: Created 3 years, 5 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 library;
2 import self as self;
3 import "package:expect/expect.dart" as exp;
4
5 static field dynamic global;
6 static method fact4() → dynamic {
7 dynamic f = 1;
8 for (dynamic n in <dynamic>[1, 2, 3, 4]) {
9 f = f.*(n);
10 }
11 return f;
12 }
13 static method fact5() → dynamic {
14 dynamic f = 1;
15 dynamic n;
16 for (final dynamic #t1 in <dynamic>[1, 2, 3, 4, 5]) {
17 n = #t1;
18 f = f.*(n);
19 }
20 return f;
21 }
22 static method fact6() → dynamic {
23 dynamic f = 1;
24 for (final dynamic #t2 in <dynamic>[1, 2, 3, 4, 5, 6]) {
25 self::global = #t2;
26 f = f.*(self::global);
27 }
28 return f;
29 }
30 static method main() → dynamic {
31 exp::Expect::isTrue(self::fact4().==(24));
32 exp::Expect::isTrue(self::fact5().==(120));
33 exp::Expect::isTrue(self::fact6().==(720));
34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698