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

Unified Diff: lib/runtime/dart/_js_mirrors.js

Issue 1233553005: Fixes #254 - Better stacktrace support (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: format fix Created 5 years, 5 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 | « lib/runtime/dart/_js_helper.js ('k') | lib/runtime/dart/_native_typed_data.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_js_mirrors.js
diff --git a/lib/runtime/dart/_js_mirrors.js b/lib/runtime/dart/_js_mirrors.js
index 5c396435a7363af0581fece19e678b4a948147c5..7a70e5f70937726932fe4c85e375a6dd1f3aacc4 100644
--- a/lib/runtime/dart/_js_mirrors.js
+++ b/lib/runtime/dart/_js_mirrors.js
@@ -12,12 +12,12 @@ dart_library.library('dart/_js_mirrors', null, /* Imports */[
}
dart.fn(getName, core.String, [core.Symbol]);
function getSymbol(name, library) {
- return dart.throw_(new core.UnimplementedError("MirrorSystem.getSymbol unimplemented"));
+ return dart.throw(new core.UnimplementedError("MirrorSystem.getSymbol unimplemented"));
}
dart.fn(getSymbol, core.Symbol, [dart.dynamic, dart.dynamic]);
dart.defineLazyProperties(exports, {
get currentJsMirrorSystem() {
- return dart.throw_(new core.UnimplementedError("MirrorSystem.currentJsMirrorSystem unimplemented"));
+ return dart.throw(new core.UnimplementedError("MirrorSystem.currentJsMirrorSystem unimplemented"));
}
});
function reflect(reflectee) {
« no previous file with comments | « lib/runtime/dart/_js_helper.js ('k') | lib/runtime/dart/_native_typed_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698