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

Side by Side Diff: tests/language/logical_expression2_test.dart

Issue 182373002: Fix bad type-inferrence for logical expressions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698