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

Side by Side 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 unified diff | Download patch
OLDNEW
1 dart_library.library('dir/html_input_d', null, /* Imports */[ 1 dart_library.library('dir/html_input_d', null, /* Imports */[
2 "dart_runtime/dart", 2 "dart_runtime/dart",
3 'dart/core' 3 'dart/core'
4 ], /* Lazy imports */[ 4 ], /* Lazy imports */[
5 ], function(exports, dart, core) { 5 ], function(exports, dart, core) {
6 'use strict'; 6 'use strict';
7 let dartx = dart.dartx; 7 let dartx = dart.dartx;
8 function fib(n) { 8 function fib(n) {
9 return n == 0 || n == 1 ? 1 : dart.notNull(fib(dart.notNull(n) - 1)) + dart. notNull(fib(dart.notNull(n) - 2)); 9 return n == 0 || n == 1 ? 1 : dart.notNull(dart.dcall(fib, dart.notNull(n) - 1)) + dart.notNull(dart.dcall(fib, dart.notNull(n) - 2));
10 } 10 }
11 dart.fn(fib, core.int, [core.int]); 11 dart.fn(fib, core.int, [core.int]);
12 // Exports: 12 // Exports:
13 exports.fib = fib; 13 exports.fib = fib;
14 }); 14 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698