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

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

Issue 1355893003: Rewire DDC to use the analyzer task model (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Fix for identifiers Created 5 years, 3 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/script.js
diff --git a/test/codegen/expect/script.js b/test/codegen/expect/script.js
index d053c285ec6e4c6673f6f2d2fd46580aee9c3b0d..031248b56f8049fb20e6b92c8da888f1aa5d321d 100755
--- a/test/codegen/expect/script.js
+++ b/test/codegen/expect/script.js
@@ -6,10 +6,10 @@ dart_library.library('script', null, /* Imports */[
'use strict';
let dartx = dart.dartx;
function main(args) {
- let name = args[dartx.join](' ');
+ let name = dart.dcall(args[dartx.join], ' ');
if (name == '')
name = 'world';
- core.print(`hello ${name}`);
+ dart.dcall(core.print, `hello ${name}`);
}
dart.fn(main, dart.void, [core.List$(core.String)]);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698