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

Unified Diff: test/codegen/expect/closure.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 | « lib/src/codegen/js_codegen.dart ('k') | tool/input_sdk/private/types.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/closure.js
diff --git a/test/codegen/expect/closure.js b/test/codegen/expect/closure.js
index b33e351fec2f42119f7e7e2b68a55de6ff99028f..f8084ab244953329ef1201a7876ba50af255d0b2 100644
--- a/test/codegen/expect/closure.js
+++ b/test/codegen/expect/closure.js
@@ -117,7 +117,8 @@ dart_library.library('closure', null, /* Imports */[
});
let Foo = Foo$();
class Bar extends core.Object {}
- class Baz extends dart.mixin(Foo$(core.int), Bar) {
+ const Baz$super = dart.mixin(Foo$(core.int), Bar);
+ class Baz extends Baz$super {
/** @param {?number} i */
Baz(i) {
super.Foo(i, 123);
« no previous file with comments | « lib/src/codegen/js_codegen.dart ('k') | tool/input_sdk/private/types.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698