Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2014, 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. | |
|
ngeoffray
2014/02/27 10:33:12
New line.
floitsch
2014/02/27 16:07:08
Done.
| |
| 4 // Dart test program for testing if statement. | |
|
ngeoffray
2014/02/27 10:33:12
Rephrase comment.
floitsch
2014/02/27 16:07:08
Removed. The description is below.
| |
| 5 | |
| 6 import "package:expect/expect.dart"; | |
| 7 | |
| 8 // For logical-or conditions with an and-expression in the rhs dart2js | |
| 9 // unconditionally propagated is-checks of the logical and. | |
|
sra1
2014/02/27 03:12:55
This past-tense sentence will be confusing in the
floitsch
2014/02/27 16:07:08
Test should work with the VM too. I don't see any
| |
| 10 | |
| 11 int globalCounter = 0; | |
| 12 | |
| 13 void nonInlinedUse(Object object) { | |
| 14 if (new DateTime.now().millisecondsSinceEpoch == 42) nonInlinedUse(object); | |
| 15 if (object is! String) globalCounter++; | |
| 16 } | |
| 17 | |
| 18 main() { | |
| 19 var o = [ "foo", 499 ][1]; | |
|
sra1
2014/02/27 03:12:55
With array tracing, dart2js can probably constant-
floitsch
2014/02/27 16:07:08
Done.
| |
| 20 | |
| 21 if ((o is num) || | |
| 22 (o is String && true)) { | |
| 23 nonInlinedUse(o); | |
| 24 } | |
| 25 Expect.equals(1, globalCounter); | |
| 26 } | |
| OLD | NEW |