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

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

Issue 968273002: Fixing layout in js output (use full paths rather than just the library name) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 9 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 constructors; 1 var constructors;
2 (function(constructors) { 2 (function(constructors) {
3 'use strict'; 3 'use strict';
4 class A extends dart.Object { 4 class A extends dart.Object {
5 } 5 }
6 class B extends dart.Object { 6 class B extends dart.Object {
7 B() { 7 B() {
8 } 8 }
9 } 9 }
10 class C extends dart.Object { 10 class C extends dart.Object {
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 constructors.G = G; 111 constructors.G = G;
112 constructors.H = H; 112 constructors.H = H;
113 constructors.I = I; 113 constructors.I = I;
114 constructors.J = J; 114 constructors.J = J;
115 constructors.K = K; 115 constructors.K = K;
116 constructors.L = L; 116 constructors.L = L;
117 constructors.M = M; 117 constructors.M = M;
118 constructors.N = N; 118 constructors.N = N;
119 constructors.P = P; 119 constructors.P = P;
120 })(constructors || (constructors = {})); 120 })(constructors || (constructors = {}));
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698