| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.element_test; | 8 library engine.element_test; |
| 9 | 9 |
| 10 import 'package:analyzer/src/generated/ast.dart'; | 10 import 'package:analyzer/src/generated/ast.dart'; |
| 11 import 'package:analyzer/src/generated/element.dart'; | 11 import 'package:analyzer/src/generated/element.dart'; |
| 12 import 'package:analyzer/src/generated/engine.dart' show AnalysisContext, | 12 import 'package:analyzer/src/generated/engine.dart' show AnalysisContext, |
| 13 AnalysisContextImpl; | 13 AnalysisContextImpl; |
| 14 import 'package:analyzer/src/generated/java_core.dart'; | 14 import 'package:analyzer/src/generated/java_core.dart'; |
| 15 import 'package:analyzer/src/generated/source_io.dart'; | 15 import 'package:analyzer/src/generated/source_io.dart'; |
| 16 import 'package:analyzer/src/generated/testing/ast_factory.dart'; | 16 import 'package:analyzer/src/generated/testing/ast_factory.dart'; |
| 17 import 'package:analyzer/src/generated/testing/element_factory.dart'; | 17 import 'package:analyzer/src/generated/testing/element_factory.dart'; |
| 18 import 'package:analyzer/src/generated/testing/test_type_provider.dart'; |
| 18 import 'package:unittest/unittest.dart'; | 19 import 'package:unittest/unittest.dart'; |
| 19 | 20 |
| 20 import '../reflective_tests.dart'; | 21 import '../reflective_tests.dart'; |
| 21 import 'resolver_test.dart' show TestTypeProvider, AnalysisContextHelper; | 22 import 'resolver_test.dart' show TestTypeProvider, AnalysisContextHelper; |
| 22 import 'test_support.dart'; | 23 import 'test_support.dart'; |
| 23 | 24 |
| 24 | 25 |
| 25 main() { | 26 main() { |
| 26 groupSep = ' | '; | 27 groupSep = ' | '; |
| 27 runReflectiveTests(ElementKindTest); | 28 runReflectiveTests(ElementKindTest); |
| (...skipping 3924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3952 | 3953 |
| 3953 class _FunctionTypeImplTest_isSubtypeOf_baseCase_classFunction extends | 3954 class _FunctionTypeImplTest_isSubtypeOf_baseCase_classFunction extends |
| 3954 InterfaceTypeImpl { | 3955 InterfaceTypeImpl { |
| 3955 | 3956 |
| 3956 _FunctionTypeImplTest_isSubtypeOf_baseCase_classFunction(ClassElement arg0) | 3957 _FunctionTypeImplTest_isSubtypeOf_baseCase_classFunction(ClassElement arg0) |
| 3957 : super.con1(arg0); | 3958 : super.con1(arg0); |
| 3958 | 3959 |
| 3959 @override | 3960 @override |
| 3960 bool get isDartCoreFunction => true; | 3961 bool get isDartCoreFunction => true; |
| 3961 } | 3962 } |
| OLD | NEW |