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

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

Issue 1100633006: Generate static calls for Object fields and methods (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 8 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/browser/runtime_tests.js ('k') | test/codegen/expect/opassign.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/codegen/expect/misc.js
diff --git a/test/codegen/expect/misc.js b/test/codegen/expect/misc.js
index 478672d1b3d6995611f62c58b1493d800c716292..bf0cf8698329eea96fb339a89b2e71106e53391f 100644
--- a/test/codegen/expect/misc.js
+++ b/test/codegen/expect/misc.js
@@ -3,9 +3,9 @@ var misc;
'use strict';
// Function main: () → dynamic
function main() {
- core.print((1).toString());
- core.print(1.0.toString());
- core.print(1.1.toString());
+ core.print(dart.toString(1));
+ core.print(dart.toString(1.0));
+ core.print(dart.toString(1.1));
}
// Exports:
exports.main = main;
« no previous file with comments | « test/browser/runtime_tests.js ('k') | test/codegen/expect/opassign.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698