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

Unified Diff: tests/language/call_nonexistent_constructor_test.dart

Issue 23582004: Fix bad language test (issue 12757, 12758). (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/call_nonexistent_constructor_test.dart
===================================================================
--- tests/language/call_nonexistent_constructor_test.dart (revision 26732)
+++ tests/language/call_nonexistent_constructor_test.dart (working copy)
@@ -19,8 +19,10 @@
int i = 0;
new A.foo(42);
try {
- new A.bar(foo()); // Arguments are not evaluated with NoSuchMethodError.
- } on NoSuchMethodError catch (e) { // Not 'on String catch ...'
+ new A.bar(foo()); // Args are evaluated before throwing NoSuchMethodError.
+ } on NoSuchMethodError catch (e) {
+ i = -1;
+ } on String catch (e) {
i = 1;
}
Expect.equals(1, i);
« no previous file with comments | « no previous file | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698