Chromium Code Reviews| Index: tests/language/logical_expression2_test.dart |
| diff --git a/tests/language/logical_expression2_test.dart b/tests/language/logical_expression2_test.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ec5a87954c485d87d9e821bcf4444b061089f7ae |
| --- /dev/null |
| +++ b/tests/language/logical_expression2_test.dart |
| @@ -0,0 +1,26 @@ |
| +// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// 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.
|
| +// 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.
|
| + |
| +import "package:expect/expect.dart"; |
| + |
| +// For logical-or conditions with an and-expression in the rhs dart2js |
| +// 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
|
| + |
| +int globalCounter = 0; |
| + |
| +void nonInlinedUse(Object object) { |
| + if (new DateTime.now().millisecondsSinceEpoch == 42) nonInlinedUse(object); |
| + if (object is! String) globalCounter++; |
| +} |
| + |
| +main() { |
| + 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.
|
| + |
| + if ((o is num) || |
| + (o is String && true)) { |
| + nonInlinedUse(o); |
| + } |
| + Expect.equals(1, globalCounter); |
| +} |