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

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

Issue 10909166: Rename NoSuchMethodException to NoSuchMethodError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments 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_1_test.dart
diff --git a/tests/compiler/dart2js_extra/regress/4515_1_test.dart b/tests/compiler/dart2js_extra/regress/4515_1_test.dart
index 73c5bb0c366bc8923bfe936f4cc52bc4c822f487..41faa955bbe362a6d0b13ccd3c5c2dbfdb81dc8e 100644
--- a/tests/compiler/dart2js_extra/regress/4515_1_test.dart
+++ b/tests/compiler/dart2js_extra/regress/4515_1_test.dart
@@ -11,5 +11,5 @@ f(p) => p("A");
main() {
A a = new A();
a.a(1);
- Expect.throws(() => print(f(a.a)), (e) => e is NoSuchMethodException);
+ Expect.throws(() => print(f(a.a)), (e) => e is NoSuchMethodError);
}
« no previous file with comments | « tests/compiler/dart2js_extra/regress/4492_test.dart ('k') | tests/compiler/dart2js_extra/regress/4515_2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698