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

Unified Diff: test/codegen/expect/dir/html_input_d.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_d.js
diff --git a/test/codegen/expect/dir/html_input_d.js b/test/codegen/expect/dir/html_input_d.js
index a887a0516d0f77172e09a28a25f88051b4b942de..75b4b91fe23db5f7c7acac4b51e743c10ed9b091 100644
--- a/test/codegen/expect/dir/html_input_d.js
+++ b/test/codegen/expect/dir/html_input_d.js
@@ -6,7 +6,7 @@ dart_library.library('dir/html_input_d', null, /* Imports */[
'use strict';
let dartx = dart.dartx;
function fib(n) {
- return n == 0 || n == 1 ? 1 : dart.notNull(fib(dart.notNull(n) - 1)) + dart.notNull(fib(dart.notNull(n) - 2));
+ return n == 0 || n == 1 ? 1 : dart.notNull(dart.dcall(fib, dart.notNull(n) - 1)) + dart.notNull(dart.dcall(fib, dart.notNull(n) - 2));
}
dart.fn(fib, core.int, [core.int]);
// Exports:

Powered by Google App Engine
This is Rietveld 408576698