| Index: test/kernel/regression/for_loop.dart.txt
|
| diff --git a/test/kernel/regression/for_loop.dart.txt b/test/kernel/regression/for_loop.dart.txt
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..696c257024221b070739e02494c7b18b1976501d
|
| --- /dev/null
|
| +++ b/test/kernel/regression/for_loop.dart.txt
|
| @@ -0,0 +1,13 @@
|
| +library;
|
| +import self as self;
|
| +import "dart:core" as core;
|
| +
|
| +static method main() → dynamic {
|
| + core::int c = new core::DateTime::now().millisecondsSinceEpoch;
|
| + for(core::int i = 0; i.<(100); i = i.+(1)) {
|
| + core::print(let final #t1 = i in let final #t2 = i = #t1.+(1) in #t1);
|
| + }
|
| + for(core::int i = 0; i.<(100); c.<(42) ? throw "fisk" : i = i.+(1)) {
|
| + core::print(let final #t3 = i in let final #t4 = i = #t3.+(1) in #t3);
|
| + }
|
| +}
|
|
|