| Index: tests/compiler/dart2js/js_backend_cps_ir_runtime_types_test.dart
|
| diff --git a/tests/compiler/dart2js/js_backend_cps_ir_runtime_types_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_runtime_types_test.dart
|
| deleted file mode 100644
|
| index e640256a6df59f3a5570328b73dc4c59eb75338f..0000000000000000000000000000000000000000
|
| --- a/tests/compiler/dart2js/js_backend_cps_ir_runtime_types_test.dart
|
| +++ /dev/null
|
| @@ -1,97 +0,0 @@
|
| -// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// Tests for the runtime type implementation.
|
| -
|
| -library runtime_types_tests;
|
| -
|
| -import 'js_backend_cps_ir.dart';
|
| -
|
| -const String getTypeArgument = r'H.getTypeArgumentByIndex';
|
| -const String getSubstitutedTypeArgument = 'H.getRuntimeTypeArgument';
|
| -const String typeToString = r'H.runtimeTypeToString';
|
| -const String createType = r'H.createRuntimeType';
|
| -
|
| -const List<TestEntry> tests = const [
|
| - const TestEntry(r"""
|
| -class C<T> {
|
| - foo() => print(T);
|
| -}
|
| -
|
| -main() {
|
| - new C<int>().foo();
|
| -}""",
|
| -r"""
|
| -function() {
|
| - var v0 = H.S(H.createRuntimeType(H.runtimeTypeToString(H.getTypeArgumentByIndex(V.C$(P.$int), 0))));
|
| - if (typeof dartPrint == "function")
|
| - dartPrint(v0);
|
| - else if (typeof console == "object" && typeof console.log != "undefined")
|
| - console.log(v0);
|
| - else if (!(typeof window == "object")) {
|
| - if (!(typeof print == "function"))
|
| - throw "Unable to print message: " + String(v0);
|
| - print(v0);
|
| - }
|
| -}"""),
|
| - const TestEntry(r"""
|
| -class C<T, U> {
|
| - foo() => print(U);
|
| -}
|
| -
|
| -class D extends C<int, double> {}
|
| -
|
| -main() {
|
| - new D().foo();
|
| -}""",
|
| -r"""
|
| -function() {
|
| - var v0 = H.S(H.createRuntimeType(H.runtimeTypeToString(H.getRuntimeTypeArgument(V.D$(), "C", 1))));
|
| - if (typeof dartPrint == "function")
|
| - dartPrint(v0);
|
| - else if (typeof console == "object" && typeof console.log != "undefined")
|
| - console.log(v0);
|
| - else if (!(typeof window == "object")) {
|
| - if (!(typeof print == "function"))
|
| - throw "Unable to print message: " + String(v0);
|
| - print(v0);
|
| - }
|
| -}"""),
|
| - const TestEntry(r"""
|
| -class C<T> {
|
| - foo() => new D<C<T>>();
|
| -}
|
| -class D<T> {
|
| - bar() => T;
|
| -}
|
| -main() {
|
| - print(new C<int>().foo().bar());
|
| -}""", r"""
|
| -function() {
|
| - var v0 = H.S(H.createRuntimeType(H.runtimeTypeToString(H.getTypeArgumentByIndex(V.D$([V.C, H.getTypeArgumentByIndex(V.C$(P.$int), 0)]), 0))));
|
| - if (typeof dartPrint == "function")
|
| - dartPrint(v0);
|
| - else if (typeof console == "object" && typeof console.log != "undefined")
|
| - console.log(v0);
|
| - else if (!(typeof window == "object")) {
|
| - if (!(typeof print == "function"))
|
| - throw "Unable to print message: " + String(v0);
|
| - print(v0);
|
| - }
|
| -}"""),
|
| - const TestEntry.forMethod('generative_constructor(C#)', r"""
|
| -class C<X, Y, Z> {
|
| - foo() => 'C<$X $Y, $Z>';
|
| -}
|
| -main() {
|
| - new C<C, int, String>().foo();
|
| -}""", r"""
|
| -function($X, $Y, $Z) {
|
| - return H.setRuntimeTypeInfo(new V.C(), [$X, $Y, $Z]);
|
| -}"""),
|
| -];
|
| -
|
| -void main() {
|
| - runTests(tests);
|
| -}
|
|
|