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

Unified Diff: lib/runtime/_types.js

Issue 1347453002: fix a few more codegen issues: (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: run the tests too Created 5 years, 3 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
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;

Powered by Google App Engine
This is Rietveld 408576698