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

Side by Side Diff: test/codegen/expect/temps.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/syncstar_syntax.js ('k') | test/codegen/expect/try_catch.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('temps', null, /* Imports */[ 1 dart_library.library('temps', 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 const _x = Symbol('_x'); 8 const _x = Symbol('_x');
9 const __x = Symbol('__x'); 9 const __x = Symbol('__x');
10 const _function = Symbol('_function'); 10 const _function = Symbol('_function');
11 class FormalCollision extends core.Object { 11 class FormalCollision extends core.Object {
12 FormalCollision(x, _x$, func) { 12 FormalCollision(x, _x$, func) {
(...skipping 29 matching lines...) Expand all
42 core.print(new FormalCollision(1, 2, dart.fn(x => x))); 42 core.print(new FormalCollision(1, 2, dart.fn(x => x)));
43 core.print(new OptionalArg()[_opt]); 43 core.print(new OptionalArg()[_opt]);
44 core.print(new OptionalArg.named()[_opt]); 44 core.print(new OptionalArg.named()[_opt]);
45 } 45 }
46 dart.fn(main); 46 dart.fn(main);
47 // Exports: 47 // Exports:
48 exports.FormalCollision = FormalCollision; 48 exports.FormalCollision = FormalCollision;
49 exports.OptionalArg = OptionalArg; 49 exports.OptionalArg = OptionalArg;
50 exports.main = main; 50 exports.main = main;
51 }); 51 });
OLDNEW
« no previous file with comments | « test/codegen/expect/syncstar_syntax.js ('k') | test/codegen/expect/try_catch.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698