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

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

Issue 1122133003: fixes #157, renaming local library identifiers if needed. (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: rebase and format Created 5 years, 7 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/sunflower/sunflower.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 var temps; 1 var temps = dart.defineLibrary(temps, {});
2 (function(exports) { 2 var core = dart.import(core);
3 (function(exports, core) {
3 'use strict'; 4 'use strict';
4 let _x = Symbol('_x'); 5 let _x = Symbol('_x');
5 let __x = Symbol('__x'); 6 let __x = Symbol('__x');
6 let _function = Symbol('_function'); 7 let _function = Symbol('_function');
7 class FormalCollision extends core.Object { 8 class FormalCollision extends core.Object {
8 FormalCollision(x, _x$, func) { 9 FormalCollision(x, _x$, func) {
9 this[_x] = x; 10 this[_x] = x;
10 this[__x] = _x$; 11 this[__x] = _x$;
11 this[_function] = func; 12 this[_function] = func;
12 } 13 }
(...skipping 14 matching lines...) Expand all
27 // Function main: () → dynamic 28 // Function main: () → dynamic
28 function main() { 29 function main() {
29 core.print(new FormalCollision(1, 2, x => x)); 30 core.print(new FormalCollision(1, 2, x => x));
30 core.print(new OptionalArg()[_opt]); 31 core.print(new OptionalArg()[_opt]);
31 core.print(new OptionalArg.named()[_opt]); 32 core.print(new OptionalArg.named()[_opt]);
32 } 33 }
33 // Exports: 34 // Exports:
34 exports.FormalCollision = FormalCollision; 35 exports.FormalCollision = FormalCollision;
35 exports.OptionalArg = OptionalArg; 36 exports.OptionalArg = OptionalArg;
36 exports.main = main; 37 exports.main = main;
37 })(temps || (temps = {})); 38 })(temps, core);
OLDNEW
« no previous file with comments | « test/codegen/expect/sunflower/sunflower.js ('k') | test/codegen/expect/try_catch.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698