| Index: lib/runtime/dart/_js_helper.js
|
| diff --git a/lib/runtime/dart/_js_helper.js b/lib/runtime/dart/_js_helper.js
|
| index 6f5a54b37bea1f7732ad336eb187b84faae9d352..aaead27ed700b32b3d71a0d0f79aad3556ebc3ee 100644
|
| --- a/lib/runtime/dart/_js_helper.js
|
| +++ b/lib/runtime/dart/_js_helper.js
|
| @@ -30,15 +30,6 @@ dart_library.library('dart/_js_helper', null, /* Imports */[
|
| dart.setSignature(Native, {
|
| constructors: () => ({Native: [Native, [core.String]]})
|
| });
|
| - class JsName extends core.Object {
|
| - JsName(opts) {
|
| - let name = opts && 'name' in opts ? opts.name : null;
|
| - this.name = name;
|
| - }
|
| - }
|
| - dart.setSignature(JsName, {
|
| - constructors: () => ({JsName: [JsName, [], {name: core.String}]})
|
| - });
|
| class JsPeerInterface extends core.Object {
|
| JsPeerInterface(opts) {
|
| let name = opts && 'name' in opts ? opts.name : null;
|
| @@ -1189,7 +1180,6 @@ dart_library.library('dart/_js_helper', null, /* Imports */[
|
| exports.NoThrows = NoThrows;
|
| exports.NoInline = NoInline;
|
| exports.Native = Native;
|
| - exports.JsName = JsName;
|
| exports.JsPeerInterface = JsPeerInterface;
|
| exports.SupportJsExtensionMethods = SupportJsExtensionMethods;
|
| exports.defineProperty = defineProperty;
|
|
|