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

Side by Side Diff: tests/compiler/dart2js/cps_ir/expected/constructor_10.js

Issue 1584543002: dart2js cps: Support inlining constructors with type arguments. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update status files and unit tests Created 4 years, 11 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 // Expectation for test: 1 // Expectation for test:
2 // // Method to test: generative_constructor(C#)
3 // class C<T> { 2 // class C<T> {
4 // var x; 3 // var x;
5 // C() : x = new D<T>(); 4 // C() : x = new D<T>();
6 // } 5 // }
7 // class D<T> { 6 // class D<T> {
8 // foo() => T; 7 // foo() => T;
9 // } 8 // }
10 // main() { 9 // main() {
11 // print(new C<int>().x.foo()); 10 // print(new C<int>().x.foo());
12 // } 11 // }
13 12
14 function($T) { 13 function() {
15 return H.setRuntimeTypeInfo(new V.C(V.D$($T)), [$T]); 14 var line = H.S(H.createRuntimeType(H.runtimeTypeToString(H.getTypeArgumentByIn dex(V.D$(P.$int), 0))));
15 if (typeof dartPrint == "function")
16 dartPrint(line);
17 else if (typeof console == "object" && typeof console.log != "undefined")
18 console.log(line);
19 else if (!(typeof window == "object")) {
20 if (!(typeof print == "function"))
21 throw "Unable to print message: " + String(line);
22 print(line);
23 }
16 } 24 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/cps_ir/expected/basic_8.js ('k') | tests/compiler/dart2js/cps_ir/expected/constructor_14.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698