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

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

Issue 1020043002: Replace dart_core.js with actual compiled SDK (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: merge 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
« no previous file with comments | « lib/src/utils.dart ('k') | test/codegen/expect/dart/_foreign_helper.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; 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 } 5 }
6 class B extends core.Object { 6 class B extends core.Object {
7 B() { 7 B() {
8 } 8 }
9 } 9 }
10 class C extends core.Object { 10 class C extends core.Object {
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 } 37 }
38 class G extends core.Object { 38 class G extends core.Object {
39 G(p1) { 39 G(p1) {
40 if (p1 === void 0) 40 if (p1 === void 0)
41 p1 = null; 41 p1 = null;
42 } 42 }
43 } 43 }
44 class H extends core.Object { 44 class H extends core.Object {
45 H(opt$) { 45 H(opt$) {
46 let p1 = opt$.p1 === void 0 ? null : opt$.p1; 46 let p1 = opt$ && 'p1' in opt$ ? opt$.p1 : null;
47 } 47 }
48 } 48 }
49 class I extends core.Object { 49 class I extends core.Object {
50 I() { 50 I() {
51 this.name = 'default'; 51 this.name = 'default';
52 } 52 }
53 I$named(name) { 53 I$named(name) {
54 this.name = name; 54 this.name = name;
55 } 55 }
56 } 56 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 exports.G = G; 111 exports.G = G;
112 exports.H = H; 112 exports.H = H;
113 exports.I = I; 113 exports.I = I;
114 exports.J = J; 114 exports.J = J;
115 exports.K = K; 115 exports.K = K;
116 exports.L = L; 116 exports.L = L;
117 exports.M = M; 117 exports.M = M;
118 exports.N = N; 118 exports.N = N;
119 exports.P = P; 119 exports.P = P;
120 })(constructors || (constructors = {})); 120 })(constructors || (constructors = {}));
OLDNEW
« no previous file with comments | « lib/src/utils.dart ('k') | test/codegen/expect/dart/_foreign_helper.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698