| 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 '../../../sdk/lib/_internal/compiler/compiler.dart'; | 8 import '../../../sdk/lib/_internal/compiler/compiler.dart'; |
| 9 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart' as l
eg; | 9 import '../../../sdk/lib/_internal/compiler/implementation/dart2jslib.dart' as l
eg; |
| 10 import '../../../sdk/lib/_internal/compiler/implementation/dart_backend/dart_bac
kend.dart'; | 10 import '../../../sdk/lib/_internal/compiler/implementation/dart_backend/dart_bac
kend.dart'; |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 711 main() { | 711 main() { |
| 712 testSimpleFileUnparse(); | 712 testSimpleFileUnparse(); |
| 713 testTopLevelField(); | 713 testTopLevelField(); |
| 714 testSimpleTopLevelClass(); | 714 testSimpleTopLevelClass(); |
| 715 testClassWithSynthesizedConstructor(); | 715 testClassWithSynthesizedConstructor(); |
| 716 testClassWithMethod(); | 716 testClassWithMethod(); |
| 717 testExtendsImplements(); | 717 testExtendsImplements(); |
| 718 testVariableDefinitions(); | 718 testVariableDefinitions(); |
| 719 testGetSet(); | 719 testGetSet(); |
| 720 testAbstractClass(); | 720 testAbstractClass(); |
| 721 // TODO(6976): Re-enable when fixed. | 721 testConflictSendsRename(); |
| 722 //testConflictSendsRename(); | |
| 723 testNoConflictSendsRename(); | 722 testNoConflictSendsRename(); |
| 724 testConflictLibraryClassRename(); | 723 testConflictLibraryClassRename(); |
| 725 testDefaultClassWithArgs(); | 724 testDefaultClassWithArgs(); |
| 726 testClassExtendsWithArgs(); | 725 testClassExtendsWithArgs(); |
| 727 testStaticInvocation(); | 726 testStaticInvocation(); |
| 728 testLibraryGetSet(); | 727 testLibraryGetSet(); |
| 729 testFieldTypeOutput(); | 728 testFieldTypeOutput(); |
| 730 testDefaultClassNamePlaceholder(); | 729 testDefaultClassNamePlaceholder(); |
| 731 testTypeVariablesAreRenamed(); | 730 testTypeVariablesAreRenamed(); |
| 732 testClassTypeArgumentBound(); | 731 testClassTypeArgumentBound(); |
| 733 testDoubleMains(); | 732 testDoubleMains(); |
| 734 testStaticAccessIoLib(); | 733 testStaticAccessIoLib(); |
| 735 testLocalFunctionPlaceholder(); | 734 testLocalFunctionPlaceholder(); |
| 736 testMinification(); | 735 testMinification(); |
| 737 testClosureLocalsMinified(); | 736 testClosureLocalsMinified(); |
| 738 testParametersMinified(); | 737 testParametersMinified(); |
| 739 testDeclarationTypePlaceholders(); | 738 testDeclarationTypePlaceholders(); |
| 740 testPlatformLibraryMemberNamesAreFixed(); | 739 testPlatformLibraryMemberNamesAreFixed(); |
| 741 testConflictsWithCoreLib(); | 740 testConflictsWithCoreLib(); |
| 742 testUnresolvedNamedConstructor(); | 741 testUnresolvedNamedConstructor(); |
| 743 } | 742 } |
| OLD | NEW |