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

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

Issue 1011153002: js: fix core.Object, output order, static const fields (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
« no previous file with comments | « test/codegen/expect/dom.js ('k') | test/codegen/expect/methods.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/fieldtest.js
diff --git a/test/codegen/expect/fieldtest.js b/test/codegen/expect/fieldtest.js
index f2cc022fea94f8795f579b743d7f019f23d133b3..6d9c5e969f0249866512cf264d71d4ed69d432ba 100644
--- a/test/codegen/expect/fieldtest.js
+++ b/test/codegen/expect/fieldtest.js
@@ -1,13 +1,13 @@
var fieldtest;
(function(exports) {
'use strict';
- class A extends dart.Object {
+ class A extends core.Object {
A() {
this.x = 42;
}
}
let B$ = dart.generic(function(T) {
- class B extends dart.Object {
+ class B extends core.Object {
B() {
this.x = null;
this.y = null;
@@ -16,7 +16,7 @@ var fieldtest;
}
return B;
});
- let B = B$(dynamic);
+ let B = B$(dart.dynamic);
// Function foo: (A) → int
function foo(a) {
core.print(a.x);
« no previous file with comments | « test/codegen/expect/dom.js ('k') | test/codegen/expect/methods.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698