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

Unified Diff: tests/compiler/dart2js_extra/regress/4515_2_test.dart

Issue 10909166: Rename NoSuchMethodException to NoSuchMethodError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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/compiler/dart2js_extra/regress/4515_2_test.dart
diff --git a/tests/compiler/dart2js_extra/regress/4515_2_test.dart b/tests/compiler/dart2js_extra/regress/4515_2_test.dart
index b30b89a608b848a63327f2caed66d5f8676ba526..fb271a109cd9f811ad9a63c5f66d6415e4cb08b5 100644
--- a/tests/compiler/dart2js_extra/regress/4515_2_test.dart
+++ b/tests/compiler/dart2js_extra/regress/4515_2_test.dart
@@ -12,5 +12,5 @@ main() {
A a = new A();
a.a(1);
Expect.throws(
- () => print(f((x) => (a.a(x)))), (e) => e is NoSuchMethodException);
+ () => print(f((x) => (a.a(x)))), (e) => e is NoSuchMethodError);
}

Powered by Google App Engine
This is Rietveld 408576698