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

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: 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
OLDNEW
1 var constructors = dart.defineLibrary(constructors, {}); 1 dart.defineLibrary('constructors');
2 var core = dart.import(core); 2 dart.import('core');
3 (function(exports, core) { 3 (function(exports, core) {
4 'use strict'; 4 'use strict';
5 class A extends core.Object {} 5 class A extends core.Object {}
6 class B extends core.Object { 6 class B extends core.Object {
7 B() { 7 B() {
8 } 8 }
9 } 9 }
10 dart.setSignature(B, { 10 dart.setSignature(B, {
11 constructors: () => ({B: [B, []]}) 11 constructors: () => ({B: [B, []]})
12 }); 12 });
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 exports.I = I; 207 exports.I = I;
208 exports.J = J; 208 exports.J = J;
209 exports.K = K; 209 exports.K = K;
210 exports.L = L; 210 exports.L = L;
211 exports.M = M; 211 exports.M = M;
212 exports.N = N; 212 exports.N = N;
213 exports.P = P; 213 exports.P = P;
214 exports.Q$ = Q$; 214 exports.Q$ = Q$;
215 exports.Q = Q; 215 exports.Q = Q;
216 })(constructors, core); 216 })(constructors, core);
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698