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

Unified Diff: test/codegen/expect/try_catch.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/try_catch.js
diff --git a/test/codegen/expect/try_catch.js b/test/codegen/expect/try_catch.js
index f1e444009c45e3a0b4e1fe9d88f493943c415a4b..d0d4b60d7780f41aefba8dc4fcca1d103000acc5 100644
--- a/test/codegen/expect/try_catch.js
+++ b/test/codegen/expect/try_catch.js
@@ -64,11 +64,11 @@ dart_library.library('try_catch', null, /* Imports */[
}
dart.fn(wub);
function main() {
- foo();
- bar();
- baz();
- qux();
- wub();
+ dart.dcall(foo);
+ dart.dcall(bar);
+ dart.dcall(baz);
+ dart.dcall(qux);
+ dart.dcall(wub);
}
dart.fn(main);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698