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

Side by Side Diff: pkg/front_end/testcases/rasta/unresolved_for_in.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 "dart:core" as core;
4
5 class Fisk extends core::Object {
6 constructor •() → self::Fisk
7 : super core::Object::•();
8 method it1(dynamic x) → dynamic {
9 for (final dynamic #t1 in x) {
10 this.key = #t1;
11 core::print(this.key);
12 }
13 for (final dynamic #t2 in x) {
14 let final dynamic #t3 = #t2 in invalid-expression;
15 core::print(self::Fisk);
16 }
17 for (final dynamic #t4 in x) {
18 let final dynamic #t5 = #t4 in invalid-expression;
19 core::print(invalid-expression);
20 }
21 for (final dynamic #t6 in x) {
22 let final dynamic #t7 = #t6 in invalid-expression;
23 core::print(() → void);
24 }
25 for (final dynamic #t8 in x) {
26 let final dynamic #t9 = #t8 in invalid-expression;
27 core::print(this.key);
28 }
29 }
30 }
31 static method main(dynamic arguments) → dynamic {
32 new self::Fisk::•();
33 for (final dynamic #t10 in arguments) {
34 let final dynamic #t11 = #t10 in invalid-expression;
35 core::print(throw core::_genericNoSuchMethod(null, #key, <dynamic>[], <dynam ic, dynamic>{}, null));
36 }
37 for (final dynamic #t12 in arguments) {
38 let final dynamic #t13 = #t12 in invalid-expression;
39 core::print(self::Fisk);
40 }
41 for (final dynamic #t14 in arguments) {
42 let final dynamic #t15 = #t14 in invalid-expression;
43 core::print(invalid-expression);
44 }
45 for (final dynamic #t16 in arguments) {
46 let final dynamic #t17 = #t16 in invalid-expression;
47 core::print(() → void);
48 }
49 for (final dynamic #t18 in arguments) {
50 let final dynamic #t19 = #t18 in invalid-expression;
51 core::print(throw core::_genericNoSuchMethod(null, #key, <dynamic>[], <dynam ic, dynamic>{}, null));
52 }
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698