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 testConflictSendsRename(); | 721 // TODO(6976): Re-enable when fixed. |
| 722 //testConflictSendsRename(); |
722 testNoConflictSendsRename(); | 723 testNoConflictSendsRename(); |
723 testConflictLibraryClassRename(); | 724 testConflictLibraryClassRename(); |
724 testDefaultClassWithArgs(); | 725 testDefaultClassWithArgs(); |
725 testClassExtendsWithArgs(); | 726 testClassExtendsWithArgs(); |
726 testStaticInvocation(); | 727 testStaticInvocation(); |
727 testLibraryGetSet(); | 728 testLibraryGetSet(); |
728 testFieldTypeOutput(); | 729 testFieldTypeOutput(); |
729 testDefaultClassNamePlaceholder(); | 730 testDefaultClassNamePlaceholder(); |
730 testTypeVariablesAreRenamed(); | 731 testTypeVariablesAreRenamed(); |
731 testClassTypeArgumentBound(); | 732 testClassTypeArgumentBound(); |
732 testDoubleMains(); | 733 testDoubleMains(); |
733 testStaticAccessIoLib(); | 734 testStaticAccessIoLib(); |
734 testLocalFunctionPlaceholder(); | 735 testLocalFunctionPlaceholder(); |
735 testMinification(); | 736 testMinification(); |
736 testClosureLocalsMinified(); | 737 testClosureLocalsMinified(); |
737 testParametersMinified(); | 738 testParametersMinified(); |
738 testDeclarationTypePlaceholders(); | 739 testDeclarationTypePlaceholders(); |
739 testPlatformLibraryMemberNamesAreFixed(); | 740 testPlatformLibraryMemberNamesAreFixed(); |
740 testConflictsWithCoreLib(); | 741 testConflictsWithCoreLib(); |
741 testUnresolvedNamedConstructor(); | 742 testUnresolvedNamedConstructor(); |
742 } | 743 } |
OLD | NEW |