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

Unified Diff: test/codegen/expect/methods.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/fieldtest.js ('k') | test/codegen/expect/server_mode/html_input.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/methods.js
diff --git a/test/codegen/expect/methods.js b/test/codegen/expect/methods.js
index da91e48b26c3c8fea9f972086cf07bc495ad1c0a..12d271c404e688008cdc953fa59417319e90c9a8 100644
--- a/test/codegen/expect/methods.js
+++ b/test/codegen/expect/methods.js
@@ -2,7 +2,7 @@ var methods;
(function(exports) {
'use strict';
let _c = Symbol('_c');
- class A extends dart.Object {
+ class A extends core.Object {
A() {
this[_c] = 3;
}
@@ -41,12 +41,12 @@ var methods;
this[_c] = c;
}
}
- class Bar extends dart.Object {
+ class Bar extends core.Object {
call(x) {
return core.print(`hello from ${x}`);
}
}
- class Foo extends dart.Object {
+ class Foo extends core.Object {
Foo() {
this.bar = new Bar();
}
« no previous file with comments | « test/codegen/expect/fieldtest.js ('k') | test/codegen/expect/server_mode/html_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698