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

Unified Diff: test/codegen/expect/temps.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/temps.js
diff --git a/test/codegen/expect/temps.js b/test/codegen/expect/temps.js
index 7467a2eaf8944091a7144d52643994b196be4cd7..b534315854ea4d70933ddd670eaee11185a6c3b7 100644
--- a/test/codegen/expect/temps.js
+++ b/test/codegen/expect/temps.js
@@ -40,9 +40,9 @@ dart_library.library('temps', null, /* Imports */[
})
});
function main() {
- core.print(new FormalCollision(1, 2, dart.fn(x => x)));
- core.print(new OptionalArg()[_opt]);
- core.print(new OptionalArg.named()[_opt]);
+ dart.dcall(core.print, new FormalCollision(1, 2, dart.fn(x => x)));
+ dart.dcall(core.print, new OptionalArg()[_opt]);
+ dart.dcall(core.print, new OptionalArg.named()[_opt]);
}
dart.fn(main);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698