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

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

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Address comments 2 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 dart.library('constructors', null, /* Imports */[ 1 dart_library.library('constructors', null, /* Imports */[
2 "dart_runtime/dart",
2 'dart/core' 3 'dart/core'
3 ], /* Lazy imports */[ 4 ], /* Lazy imports */[
4 ], function(exports, core) { 5 ], function(exports, dart, core) {
5 'use strict'; 6 'use strict';
7 let dartx = dart.dartx;
6 class A extends core.Object {} 8 class A extends core.Object {}
7 class B extends core.Object { 9 class B extends core.Object {
8 B() { 10 B() {
9 } 11 }
10 } 12 }
11 dart.setSignature(B, { 13 dart.setSignature(B, {
12 constructors: () => ({B: [B, []]}) 14 constructors: () => ({B: [B, []]})
13 }); 15 });
14 class C extends core.Object { 16 class C extends core.Object {
15 named() { 17 named() {
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 exports.I = I; 210 exports.I = I;
209 exports.J = J; 211 exports.J = J;
210 exports.K = K; 212 exports.K = K;
211 exports.L = L; 213 exports.L = L;
212 exports.M = M; 214 exports.M = M;
213 exports.N = N; 215 exports.N = N;
214 exports.P = P; 216 exports.P = P;
215 exports.Q$ = Q$; 217 exports.Q$ = Q$;
216 exports.Q = Q; 218 exports.Q = Q;
217 }); 219 });
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