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

Unified Diff: client/dom/src/native_DOMImplementation.dart

Issue 9837023: Proper support for throwing not implemented. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/src/native_DOMImplementation.dart
diff --git a/client/dom/src/native_DOMImplementation.dart b/client/dom/src/native_DOMImplementation.dart
index 4dd9eb6a146fbc8f143b75685736eb1c9b500c34..611266e4c4a241c77c5725d32843a007d20670a0 100644
--- a/client/dom/src/native_DOMImplementation.dart
+++ b/client/dom/src/native_DOMImplementation.dart
@@ -11,8 +11,8 @@ class Utils {
return result;
}
- static makeNotImplementedException() {
- return const NotImplementedException();
+ static makeNotImplementedException(String fileName, int lineNo) {
+ return new UnsupportedOperationException('[info: $fileName:$lineNo]');
}
static window() native "Utils_window";
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698