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

Side by Side Diff: test/codegen/expect/misc.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/methods.js ('k') | test/codegen/expect/names.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 misc; 1 var misc = dart.defineLibrary(misc, {});
2 (function(exports) { 2 var core = dart.import(core);
3 (function(exports, core) {
3 'use strict'; 4 'use strict';
4 // Function main: () → dynamic 5 // Function main: () → dynamic
5 function main() { 6 function main() {
6 core.print(dart.toString(1)); 7 core.print(dart.toString(1));
7 core.print(dart.toString(1.0)); 8 core.print(dart.toString(1.0));
8 core.print(dart.toString(1.1)); 9 core.print(dart.toString(1.1));
9 } 10 }
10 // Exports: 11 // Exports:
11 exports.main = main; 12 exports.main = main;
12 })(misc || (misc = {})); 13 })(misc, core);
OLDNEW
« no previous file with comments | « test/codegen/expect/methods.js ('k') | test/codegen/expect/names.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698