| 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) {
|
|
|