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

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

Issue 1045323002: emit interfaces before use (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 8 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 | « lib/src/js/printer.dart ('k') | test/codegen/expect/server_mode/html_input.html » ('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;
2 (function(exports) { 2 (function(exports) {
3 'use strict'; 3 'use strict';
4 class A extends core.Object { 4 class A extends core.Object {}
5 }
6 class B extends core.Object { 5 class B extends core.Object {
7 B() { 6 B() {
8 } 7 }
9 } 8 }
10 class C extends core.Object { 9 class C extends core.Object {
11 named() { 10 named() {
12 } 11 }
13 } 12 }
14 dart.defineNamedConstructor(C, 'named'); 13 dart.defineNamedConstructor(C, 'named');
15 class C2 extends C { 14 class C2 extends C {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 exports.G = G; 110 exports.G = G;
112 exports.H = H; 111 exports.H = H;
113 exports.I = I; 112 exports.I = I;
114 exports.J = J; 113 exports.J = J;
115 exports.K = K; 114 exports.K = K;
116 exports.L = L; 115 exports.L = L;
117 exports.M = M; 116 exports.M = M;
118 exports.N = N; 117 exports.N = N;
119 exports.P = P; 118 exports.P = P;
120 })(constructors || (constructors = {})); 119 })(constructors || (constructors = {}));
OLDNEW
« no previous file with comments | « lib/src/js/printer.dart ('k') | test/codegen/expect/server_mode/html_input.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698