Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(50)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/codegen/expect/dir/html_input_d.js
Issue
1047023002
:
use == and != to enable handling null/undefined (Closed)
Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set:
Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
lib/runtime/dart/_interceptors.js
lib/runtime/dart/_internal.js
lib/runtime/dart/_isolate_helper.js
lib/runtime/dart/_js_helper.js
lib/runtime/dart/_native_typed_data.js
lib/runtime/dart/async.js
lib/runtime/dart/collection.js
lib/runtime/dart/convert.js
lib/runtime/dart/core.js
lib/runtime/dart/isolate.js
lib/runtime/dart/math.js
lib/runtime/dart/typed_data.js
lib/runtime/dart_runtime.js
lib/src/codegen/js_codegen.dart
test/codegen/expect/BenchmarkBase.js
test/codegen/expect/DeltaBlue.js
test/codegen/expect/dir/html_input_d.js
test/codegen/expect/server_mode/dir/html_input_d.js
test/codegen/expect/server_mode/html_input.html
test/codegen/expect/sunflower/sunflower.js
View unified diff
|
Download patch
« no previous file with comments
|
« test/codegen/expect/DeltaBlue.js
('k') |
test/codegen/expect/server_mode/dir/html_input_d.js »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
1 var html_input_d;
1 var html_input_d;
2 (function(exports) {
2 (function(exports) {
3 'use strict';
3 'use strict';
4 // Function fib: (int) → int
4 // Function fib: (int) → int
5 function fib(n) {
5 function fib(n) {
6
return n ==
=
0 || n
=
== 1 ? 1 : dart.notNull(fib(dart.notNull(n) - 1)) + dar
t.notNull(fib(dart.notNull(n) - 2));
6
return n == 0 || n == 1 ? 1 : dart.notNull(fib(dart.notNull(n) - 1)) + dart.
notNull(fib(dart.notNull(n) - 2));
7 }
7 }
8 // Exports:
8 // Exports:
9 exports.fib = fib;
9 exports.fib = fib;
10 })(html_input_d || (html_input_d = {}));
10 })(html_input_d || (html_input_d = {}));
OLD
NEW
« no previous file with comments
|
« test/codegen/expect/DeltaBlue.js
('k') |
test/codegen/expect/server_mode/dir/html_input_d.js »
('j') |
no next file with comments »
Issue 1047023002: use == and != to enable handling null/undefined (Closed)
Created 5 years, 8 months ago by Jennifer Messerly
Modified 5 years, 8 months ago
Reviewers: vsm, Jacob
Base URL: git@github.com:dart-lang/dev_compiler.git@master
Comments: 1
This is Rietveld
408576698