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

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

Issue 2213673002: Delete dart_backend from compiler. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « tests/compiler/dart2js/platform_consistency_test.dart ('k') | tools/create_sdk.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 // Tests dangling else. The VM should not have any problems, but dart2js or 4 // Tests dangling else. The VM should not have any problems, but dart2js could
5 // dart2dart could get this wrong. 5 // get this wrong.
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 8
9 nestedIf1(notTrue) { 9 nestedIf1(notTrue) {
10 if (notTrue) return 'bad input'; 10 if (notTrue) return 'bad input';
11 if (notTrue) { 11 if (notTrue) {
12 if (notTrue) { 12 if (notTrue) {
13 return 'bad'; 13 return 'bad';
14 } 14 }
15 } else { 15 } else {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 return 'bug'; 75 return 'bug';
76 } 76 }
77 77
78 main() { 78 main() {
79 Expect.equals('good', nestedIf1(false)); 79 Expect.equals('good', nestedIf1(false));
80 Expect.equals('good', nestedIf2(false)); 80 Expect.equals('good', nestedIf2(false));
81 Expect.equals('good', nestedWhile(false)); 81 Expect.equals('good', nestedWhile(false));
82 Expect.equals('good', nestedFor(false)); 82 Expect.equals('good', nestedFor(false));
83 Expect.equals('good', nestedLabeledStatement(false)); 83 Expect.equals('good', nestedLabeledStatement(false));
84 } 84 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/platform_consistency_test.dart ('k') | tools/create_sdk.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698