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

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

Issue 1413683006: Move runtime js files down to lib/runtime/dart (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 1 month 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/dart", 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 let _x = Symbol('_x'); 8 let _x = Symbol('_x');
9 let __x = Symbol('__x'); 9 let __x = Symbol('__x');
10 let _function = Symbol('_function'); 10 let _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 30 matching lines...) Expand all
43 core.print(new FormalCollision(1, 2, dart.fn(x => x))); 43 core.print(new FormalCollision(1, 2, dart.fn(x => x)));
44 core.print(new OptionalArg()[_opt]); 44 core.print(new OptionalArg()[_opt]);
45 core.print(new OptionalArg.named()[_opt]); 45 core.print(new OptionalArg.named()[_opt]);
46 } 46 }
47 dart.fn(main); 47 dart.fn(main);
48 // Exports: 48 // Exports:
49 exports.FormalCollision = FormalCollision; 49 exports.FormalCollision = FormalCollision;
50 exports.OptionalArg = OptionalArg; 50 exports.OptionalArg = OptionalArg;
51 exports.main = main; 51 exports.main = main;
52 }); 52 });
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