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
(452)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: test/codegen/expect/try_catch.js
Issue
998043002
:
Fixes in codegen and test script (Closed)
Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set:
Created 5 years, 9 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:
.gitignore
lib/src/codegen/js_codegen.dart
lib/src/js/js_ast.dart
lib/src/js/keywords.dart
lib/src/js/printer.dart
lib/src/utils.dart
test/codegen/8invalid-chars.in+file_name.dart
test/codegen/expect/8invalid-chars.in+file_name.js
test/codegen/expect/8invalid-chars.in+file_name.txt
test/codegen/expect/server_mode/dev_compiler/runtime/dart_runtime.js
test/codegen/expect/server_mode/dev_compiler/runtime/harmony_feature_check.js
test/codegen/expect/server_mode/dev_compiler/runtime/messages.css
test/codegen/expect/server_mode/dev_compiler/runtime/messages_widget.js
test/codegen/expect/try_catch.js
test/codegen/expect/try_catch.txt
test/codegen/try_catch.dart
test/test.sh
View unified diff
|
Download patch
« no previous file with comments
|
« test/codegen/expect/server_mode/dev_compiler/runtime/messages_widget.js
('k') |
test/codegen/expect/try_catch.txt »
('j') |
test/test.sh »
('J')
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
var try_catch;
2
(function(exports) {
3
'use strict';
4
// Function main: () → dynamic
5
function main() {
6
try {
7
throw "hi there";
8
} catch ($e) {
9
if (dart.is($e, core.String)) {
10
let e = $e;
11
let t = dart.stackTrace(e);
12
}
13
let e = $e;
14
let t = dart.stackTrace(e);
15
throw e;
16
}
17
18
}
19
// Exports:
20
exports.main = main;
21
})(try_catch || (try_catch = {}));
OLD
NEW
« no previous file with comments
|
« test/codegen/expect/server_mode/dev_compiler/runtime/messages_widget.js
('k') |
test/codegen/expect/try_catch.txt »
('j') |
test/test.sh »
('J')
Issue 998043002: Fixes in codegen and test script (Closed)
Created 5 years, 9 months ago by Siggi Cherem (dart-lang)
Modified 5 years, 9 months ago
Reviewers: Jennifer Messerly
Base URL: git@github.com:dart-lang/dev_compiler.git@master
Comments: 13
This is Rietveld
408576698