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

Unified Diff: tests/language/call_nonexistent_constructor_test.dart

Issue 11049038: Change compile-time errors into dynamic errors in instance creation expression (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
Index: tests/language/call_nonexistent_constructor_test.dart
===================================================================
--- tests/language/call_nonexistent_constructor_test.dart (revision 13204)
+++ tests/language/call_nonexistent_constructor_test.dart (working copy)
@@ -17,8 +17,8 @@
int i = 0;
new A.foo(42);
try {
- new A.bar(foo());
- } on String catch (e) {
+ new A.bar(foo()); // Arguments are not evaluated with NoSuchMethodError.
+ } on NoSuchMethodError catch (e) { // Not 'on String catch ...'
i = 1;
}
Expect.equals(1, i);
« no previous file with comments | « tests/language/call_constructor_on_unresolvable_class_test.dart ('k') | tests/language/class_literal_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698