OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // Regression test for dart2js that used to emit an invalid JS | |
6 // variable declaration initializer in a for initializer. | |
7 | |
8 import "package:expect/expect.dart"; | |
9 | |
10 var global; | |
11 | |
12 inlineMe() { | |
13 global = 42; | |
14 return 54; | |
15 } | |
16 | |
17 main() { | |
18 for (var t = inlineMe(); t < 42 ;t++) {} | |
kasperl
2013/05/28 09:50:19
t < 42 ;t -> t < 42; t
ngeoffray
2013/05/28 10:00:11
Done.
| |
19 Expect.equals(42, global); | |
20 } | |
OLD | NEW |