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

Unified Diff: lib/html/templates/html/impl/impl_DocumentFragment.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/src/native_DOMImplementation.dart ('k') | lib/html/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
diff --git a/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate b/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
index c9dd6b7af3ff3a69ca5fb36d4c056c89fcc1bd1f..cd4083e6071295b526af50397171c3d5e80914a9 100644
--- a/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
+++ b/lib/html/templates/html/impl/impl_DocumentFragment.darttemplate
@@ -55,7 +55,7 @@ class _FilteredElementList 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) {
@@ -63,7 +63,7 @@ class _FilteredElementList implements List {
}
void insertRange(int start, int rangeLength, [initialValue = null]) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
void clear() {
« no previous file with comments | « lib/html/src/native_DOMImplementation.dart ('k') | lib/html/templates/html/impl/impl_Element.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698