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

Unified Diff: test/codegen/expect/names.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/names.js
diff --git a/test/codegen/expect/names.js b/test/codegen/expect/names.js
index f0a360c10528d87aa2f2c924fe6539970550e29b..4cde0a20e751b12cc3a06a69786d1c47c222c7cc 100644
--- a/test/codegen/expect/names.js
+++ b/test/codegen/expect/names.js
@@ -45,13 +45,13 @@ dart_library.library('names', null, /* Imports */[
set arguments(_) {}
});
function main() {
- core.print(exports.exports);
- core.print(new Foo()[_foo$]());
- core.print(_foo());
- core.print(new Frame.caller([1, 2, 3]));
+ dart.dcall(core.print, exports.exports);
+ dart.dcall(core.print, dart.dcall(new Foo()[_foo$]));
+ dart.dcall(core.print, dart.dcall(_foo));
+ dart.dcall(core.print, new Frame.caller([1, 2, 3]));
let eval$ = Frame.callee;
- core.print(eval$);
- core.print(dart.notNull(Frame2.caller) + dart.notNull(Frame2.arguments));
+ dart.dcall(core.print, eval$);
+ dart.dcall(core.print, dart.notNull(Frame2.caller) + dart.notNull(Frame2.arguments));
}
dart.fn(main);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698