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

Unified Diff: test/codegen/expect/dir/html_input_a.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/dir/html_input_a.js
diff --git a/test/codegen/expect/dir/html_input_a.js b/test/codegen/expect/dir/html_input_a.js
index 9c21632a1da7c4ef65dfff88a39e3e0979bff41b..129a777c44bae2ad44678d3739b8a859ea1cd438 100644
--- a/test/codegen/expect/dir/html_input_a.js
+++ b/test/codegen/expect/dir/html_input_a.js
@@ -9,8 +9,8 @@ dart_library.library('dir/html_input_a', null, /* Imports */[
'use strict';
let dartx = dart.dartx;
function main() {
- core.print(`fib(${html_input_b.x} + ${html_input_c.y}) = `);
- core.print(` ... ${html_input_d.fib(dart.notNull(html_input_b.x) + dart.notNull(html_input_c.y))}`);
+ dart.dcall(core.print, `fib(${html_input_b.x} + ${html_input_c.y}) = `);
+ dart.dcall(core.print, ` ... ${dart.dcall(html_input_d.fib, dart.notNull(html_input_b.x) + dart.notNull(html_input_c.y))}`);
}
dart.fn(main);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698