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

Unified Diff: lib/html/dartium/html_dartium.dart

Side-by-side diff isn't available for this file because of its large size.
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:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/src/dart2js_Conversions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 6d35628cc1313668a58e5db8a989f68050bd263f..45b33ca0bcb19ab6f726d9439ef391ad476349ed 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -11505,7 +11505,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) {
@@ -11513,7 +11513,7 @@ class _FilteredElementList implements List {
}
void insertRange(int start, int rangeLength, [initialValue = null]) {
- throw const NotImplementedException();
+ throw new UnimplementedError();
}
void clear() {
@@ -12721,15 +12721,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) =>
@@ -44283,7 +44283,7 @@ class _Utils {
static Map createMap() => {};
- static makeNotImplementedException(String fileName, int lineNo) {
+ static makeUnimplementedError(String fileName, int lineNo) {
return new UnsupportedError('[info: $fileName:$lineNo]');
}
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/src/dart2js_Conversions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698