| OLD | NEW |
| 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 } |
| OLD | NEW |