| Index: lib/runtime/_types.js
|
| diff --git a/lib/runtime/_types.js b/lib/runtime/_types.js
|
| index 691d9f2e9739451e1ff4b51f431532f8a0c3f838..8c8122e7e47d258b59db5637d19b6e6131b52854 100644
|
| --- a/lib/runtime/_types.js
|
| +++ b/lib/runtime/_types.js
|
| @@ -16,8 +16,6 @@ dart_library.library('dart_runtime/_types', null, /* Imports */[
|
| const getOwnPropertyNames = Object.getOwnPropertyNames;
|
|
|
| const assert = dart_utils.assert;
|
| - const copyProperties = dart_utils.copyProperties;
|
| - const safeGetOwnProperty = dart_utils.safeGetOwnProperty;
|
|
|
| /**
|
| * Types in dart are represented at runtime as follows.
|
| @@ -64,13 +62,13 @@ dart_library.library('dart_runtime/_types', null, /* Imports */[
|
|
|
| class Bottom extends TypeRep {
|
| toString() { return "bottom"; }
|
| - };
|
| + }
|
| let bottomR = new Bottom();
|
| exports.bottom = bottomR;
|
|
|
| class JSObject extends TypeRep {
|
| toString() { return "NativeJavaScriptObject"; }
|
| - };
|
| + }
|
| let jsobjectR = new JSObject();
|
| exports.jsobject = jsobjectR;
|
|
|
|
|