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: lib/html/templates/html/impl/impl_Element.darttemplate

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 | « lib/html/templates/html/impl/impl_DocumentFragment.darttemplate ('k') | lib/io/path_impl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/templates/html/impl/impl_Element.darttemplate
diff --git a/lib/html/templates/html/impl/impl_Element.darttemplate b/lib/html/templates/html/impl/impl_Element.darttemplate
index e8b9ed593a3ab2988f70ba18daa52d159ddf2e2e..bc0f0a79ec5561ed4d7fae572fd4d4a1d455b1a0 100644
--- a/lib/html/templates/html/impl/impl_Element.darttemplate
+++ b/lib/html/templates/html/impl/impl_Element.darttemplate
@@ -106,15 +106,15 @@ class _ChildrenElementList implements List {
}
void setRange(int start, int rangeLength, List from, [int startFrom = 0]) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
void removeRange(int start, int rangeLength) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
void insertRange(int start, int rangeLength, [initialValue = null]) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
List getRange(int start, int rangeLength) =>
« no previous file with comments | « lib/html/templates/html/impl/impl_DocumentFragment.darttemplate ('k') | lib/io/path_impl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698