| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #import('dart:uri'); | 5 #import('dart:uri'); |
| 6 #import('parser_helper.dart'); | 6 #import('parser_helper.dart'); |
| 7 #import('mock_compiler.dart'); | 7 #import('mock_compiler.dart'); |
| 8 #import("../../../lib/compiler/compiler.dart"); | 8 #import("../../../lib/compiler/compiler.dart"); |
| 9 #import("../../../lib/compiler/implementation/leg.dart", prefix:'leg'); | 9 #import("../../../lib/compiler/implementation/leg.dart", prefix:'leg'); |
| 10 #import("../../../lib/compiler/implementation/dart_backend/dart_backend.dart"); | 10 #import("../../../lib/compiler/implementation/dart_backend/dart_backend.dart"); |
| 11 #import("../../../lib/compiler/implementation/elements/elements.dart"); | 11 #import("../../../lib/compiler/implementation/elements/elements.dart"); |
| 12 #import("../../../lib/compiler/implementation/tree/tree.dart"); | 12 #import("../../../lib/compiler/implementation/tree/tree.dart"); |
| 13 | 13 |
| 14 testUnparse(String statement) { | 14 testUnparse(String statement) { |
| 15 Node node = parseStatement(statement); | 15 Node node = parseStatement(statement); |
| 16 Expect.equals(statement, unparse(node)); | 16 Expect.equals(statement, unparse(node)); |
| 17 } | 17 } |
| 18 | 18 |
| 19 testUnparseMember(String member) { | 19 testUnparseMember(String member) { |
| 20 Node node = parseMember(member); | 20 Node node = parseMember(member); |
| 21 Expect.equals(member, unparse(node)); | 21 Expect.equals(member, unparse(node)); |
| 22 } | 22 } |
| 23 | 23 |
| 24 const coreLib = @''' | 24 const coreLib = r''' |
| 25 #library('corelib'); | 25 #library('corelib'); |
| 26 class Object {} | 26 class Object {} |
| 27 interface bool {} | 27 interface bool {} |
| 28 interface num {} | 28 interface num {} |
| 29 interface int extends num {} | 29 interface int extends num {} |
| 30 interface double extends num {} | 30 interface double extends num {} |
| 31 interface String {} | 31 interface String {} |
| 32 interface Function {} | 32 interface Function {} |
| 33 interface List {} | 33 interface List {} |
| 34 interface Map {} | 34 interface Map {} |
| 35 interface Closure {} | 35 interface Closure {} |
| 36 interface Dynamic_ {} | 36 interface Dynamic_ {} |
| 37 interface Null {} | 37 interface Null {} |
| 38 class Math { | 38 class Math { |
| 39 static double parseDouble(String s) => 1.0; | 39 static double parseDouble(String s) => 1.0; |
| 40 } | 40 } |
| 41 '''; | 41 '''; |
| 42 | 42 |
| 43 const ioLib = @''' | 43 const ioLib = r''' |
| 44 #library('io'); | 44 #library('io'); |
| 45 class Platform { | 45 class Platform { |
| 46 static int operatingSystem; | 46 static int operatingSystem; |
| 47 } | 47 } |
| 48 '''; | 48 '''; |
| 49 | 49 |
| 50 testDart2Dart(String src, [void continuation(String s), bool minify = false, | 50 testDart2Dart(String src, [void continuation(String s), bool minify = false, |
| 51 bool cutDeclarationTypes = false]) { | 51 bool cutDeclarationTypes = false]) { |
| 52 // If continuation is not provided, check that source string remains the same. | 52 // If continuation is not provided, check that source string remains the same. |
| 53 if (continuation === null) { | 53 if (continuation === null) { |
| (...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 testDoubleMains(); | 857 testDoubleMains(); |
| 858 testInterfaceDefaultAnotherLib(); | 858 testInterfaceDefaultAnotherLib(); |
| 859 testStaticAccessIoLib(); | 859 testStaticAccessIoLib(); |
| 860 testLocalFunctionPlaceholder(); | 860 testLocalFunctionPlaceholder(); |
| 861 testMinification(); | 861 testMinification(); |
| 862 testClosureLocalsMinified(); | 862 testClosureLocalsMinified(); |
| 863 testParametersMinified(); | 863 testParametersMinified(); |
| 864 testTypeVariablesInDifferentLibraries(); | 864 testTypeVariablesInDifferentLibraries(); |
| 865 testDeclarationTypePlaceholders(); | 865 testDeclarationTypePlaceholders(); |
| 866 } | 866 } |
| OLD | NEW |