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

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: fix core.Symbol reference 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
OLDNEW
1 var misc; 1 var misc, core;
2 (function(exports) { 2 (function(exports, core) {
3 'use strict'; 3 'use strict';
4 // Function main: () → dynamic 4 // Function main: () → dynamic
5 function main() { 5 function main() {
6 core.print(dart.toString(1)); 6 core.print(dart.toString(1));
7 core.print(dart.toString(1.0)); 7 core.print(dart.toString(1.0));
8 core.print(dart.toString(1.1)); 8 core.print(dart.toString(1.1));
9 } 9 }
10 // Exports: 10 // Exports:
11 exports.main = main; 11 exports.main = main;
12 })(misc || (misc = {})); 12 })(misc || (misc = {}), core);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698