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

Side by Side Diff: test/codegen/expect/try_catch.js

Issue 1530563003: Generate all runtime files from dart. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merged master Created 4 years, 11 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
« no previous file with comments | « test/codegen/expect/temps.js ('k') | test/codegen/expect/unittest.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dart_library.library('try_catch', null, /* Imports */[ 1 dart_library.library('try_catch', null, /* Imports */[
2 "dart/_runtime", 2 'dart/_runtime',
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 foo() { 8 function foo() {
9 try { 9 try {
10 dart.throw("hi there"); 10 dart.throw("hi there");
11 } catch (e$) { 11 } catch (e$) {
12 if (dart.is(e$, core.String)) { 12 if (dart.is(e$, core.String)) {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 } 72 }
73 dart.fn(main); 73 dart.fn(main);
74 // Exports: 74 // Exports:
75 exports.foo = foo; 75 exports.foo = foo;
76 exports.bar = bar; 76 exports.bar = bar;
77 exports.baz = baz; 77 exports.baz = baz;
78 exports.qux = qux; 78 exports.qux = qux;
79 exports.wub = wub; 79 exports.wub = wub;
80 exports.main = main; 80 exports.main = main;
81 }); 81 });
OLDNEW
« no previous file with comments | « test/codegen/expect/temps.js ('k') | test/codegen/expect/unittest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698