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

Unified Diff: test/codegen/expect/fieldtest.js

Issue 1058653002: implement mixins in subtype checks, more codegen fixes (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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: test/codegen/expect/fieldtest.js
diff --git a/test/codegen/expect/fieldtest.js b/test/codegen/expect/fieldtest.js
index 9e3e6d7df36c2e5948a22c0be10a063f8f11e311..81d970e72071a52f2fad295381fcb2908d238f03 100644
--- a/test/codegen/expect/fieldtest.js
+++ b/test/codegen/expect/fieldtest.js
@@ -16,7 +16,7 @@ var fieldtest;
}
return B;
});
- let B = B$(dart.dynamic);
+ let B = B$();
// Function foo: (A) → int
function foo(a) {
core.print(a.x);
@@ -61,8 +61,8 @@ var fieldtest;
}
// Exports:
exports.A = A;
- exports.B = B;
exports.B$ = B$;
+ exports.B = B;
exports.foo = foo;
exports.bar = bar;
exports.baz = baz;

Powered by Google App Engine
This is Rietveld 408576698