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

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

Issue 1145243013: Check for duplicate library names (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Address comments Created 5 years, 6 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 = dart.defineLibrary(constructors, {}); 1 dart.library('constructors', null, /* Imports */[
2 var core = dart.import(core); 2 'dart/core'
3 (function(exports, core) { 3 ], /* Lazy imports */[
4 ], function(exports, core) {
4 'use strict'; 5 'use strict';
5 class A extends core.Object {} 6 class A extends core.Object {}
6 class B extends core.Object { 7 class B extends core.Object {
7 B() { 8 B() {
8 } 9 }
9 } 10 }
10 dart.setSignature(B, { 11 dart.setSignature(B, {
11 constructors: () => ({B: [B, []]}) 12 constructors: () => ({B: [B, []]})
12 }); 13 });
13 class C extends core.Object { 14 class C extends core.Object {
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 exports.H = H; 207 exports.H = H;
207 exports.I = I; 208 exports.I = I;
208 exports.J = J; 209 exports.J = J;
209 exports.K = K; 210 exports.K = K;
210 exports.L = L; 211 exports.L = L;
211 exports.M = M; 212 exports.M = M;
212 exports.N = N; 213 exports.N = N;
213 exports.P = P; 214 exports.P = P;
214 exports.Q$ = Q$; 215 exports.Q$ = Q$;
215 exports.Q = Q; 216 exports.Q = Q;
216 })(constructors, core); 217 });
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