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

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

Issue 1638533004: Create local alias for super class in --closure mode (issue #312) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: fix test Created 4 years, 11 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 | « no previous file | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_runtime.js
diff --git a/lib/runtime/dart/_runtime.js b/lib/runtime/dart/_runtime.js
index 47ef79427ce9949670b666f8ff9e6b7ce6307c95..8a986bce275276f0102decb8e2f3f7ba3c1925a4 100644
--- a/lib/runtime/dart/_runtime.js
+++ b/lib/runtime/dart/_runtime.js
@@ -732,7 +732,8 @@ dart_library.library('dart/_runtime', null, /* Imports */[
const _mixins = Symbol("mixins");
const implements_ = Symbol("implements");
const metadata = Symbol("metadata");
- const TypeRep = class TypeRep extends LazyTagged(() => core.Type) {
+ const _TypeRepBase = LazyTagged(() => core.Type);
+ const TypeRep = class TypeRep extends _TypeRepBase {
get name() {
return this.toString();
}
« no previous file with comments | « no previous file | lib/src/codegen/js_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698