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

Unified Diff: tests/language/named_parameters_with_dollars_test.dart

Issue 11358060: Change NotImplementedException to UnimplementedError. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 1 month 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 | « tests/html/documentfragment_test.dart ('k') | tools/utils/vim/syntax/dart.vim » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/named_parameters_with_dollars_test.dart
diff --git a/tests/language/named_parameters_with_dollars_test.dart b/tests/language/named_parameters_with_dollars_test.dart
index d1bc0f634c08cebb12880a0e3d9fd012a147e06f..6bd7af378ed4c7fcf3f42b6ec5fd661ac37d473d 100644
--- a/tests/language/named_parameters_with_dollars_test.dart
+++ b/tests/language/named_parameters_with_dollars_test.dart
@@ -37,8 +37,8 @@ format(thing) {
makeTestClass(n) => [new TestClass(), new Decoy(), 'string'][n % 3];
class Decoy {
- method([a$b, b, a]) { throw const NotImplementedException(); }
- psycho([$$$, $$, $]) { throw const NotImplementedException(); }
+ method([a$b, b, a]) { throw new UnimplementedError(); }
+ psycho([$$$, $$, $]) { throw new UnimplementedError(); }
}
testDollar() {
« no previous file with comments | « tests/html/documentfragment_test.dart ('k') | tools/utils/vim/syntax/dart.vim » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698