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

Side by Side Diff: tests/language_2/getter_closure_execution_order_test.dart

Issue 3001803002: Migrate block 114 (and some of 113). (Closed)
Patch Set: Tweak app_jit status. Created 3 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/language_2/get_set_syntax_test.dart ('k') | tests/language_2/language_2.status » ('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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 // 4 //
5 // Test that a getter is evaluated after the arguments, when a getter is 5 // Test that a getter is evaluated after the arguments, when a getter is
6 // for invoking a method. See chapter 'Method Invocation' in specification. 6 // for invoking a method. See chapter 'Method Invocation' in specification.
7 7
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 9
10 var counter = 0; 10 var counter = 0;
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 failures.add(stack); 80 failures.add(stack);
81 } 81 }
82 // If any of the tests failed print out the details and fail the test. 82 // If any of the tests failed print out the details and fail the test.
83 if (failures.length != 0) { 83 if (failures.length != 0) {
84 for (var msg in failures) { 84 for (var msg in failures) {
85 print(msg.toString()); 85 print(msg.toString());
86 } 86 }
87 throw "${failures.length ~/ 2} tests failed."; 87 throw "${failures.length ~/ 2} tests failed.";
88 } 88 }
89 } 89 }
OLDNEW
« no previous file with comments | « tests/language_2/get_set_syntax_test.dart ('k') | tests/language_2/language_2.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698