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

Side by Side Diff: test/codegen/expect/constructors.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/cascade.js ('k') | test/codegen/expect/covariance.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 constructors; 1 var constructors = dart.defineLibrary(constructors, {});
2 (function(exports) { 2 var core = dart.import(core);
3 (function(exports, core) {
3 'use strict'; 4 'use strict';
4 class A extends core.Object {} 5 class A extends core.Object {}
5 class B extends core.Object { 6 class B extends core.Object {
6 B() { 7 B() {
7 } 8 }
8 } 9 }
9 class C extends core.Object { 10 class C extends core.Object {
10 named() { 11 named() {
11 } 12 }
12 } 13 }
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 exports.F = F; 110 exports.F = F;
110 exports.G = G; 111 exports.G = G;
111 exports.H = H; 112 exports.H = H;
112 exports.I = I; 113 exports.I = I;
113 exports.J = J; 114 exports.J = J;
114 exports.K = K; 115 exports.K = K;
115 exports.L = L; 116 exports.L = L;
116 exports.M = M; 117 exports.M = M;
117 exports.N = N; 118 exports.N = N;
118 exports.P = P; 119 exports.P = P;
119 })(constructors || (constructors = {})); 120 })(constructors, core);
OLDNEW
« no previous file with comments | « test/codegen/expect/cascade.js ('k') | test/codegen/expect/covariance.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698