blob: 3d89872703bc6821d1f803559b3b5dc1794837ed [file] [log] [blame]
// Copyright (c) 2019, 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.
import 'package:analyzer/dart/element/type.dart';
import 'package:test/test.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(FunctionTypeAliasResolutionTest);
});
}
@reflectiveTest
class FunctionTypeAliasResolutionTest extends DriverResolutionTest {
test_type_element() async {
await resolveTestCode(r'''
G<int> g;
typedef T G<T>();
''');
FunctionType type = findElement.topVar('g').type;
assertElementTypeString(type, 'int Function()');
var typedefG = findElement.genericTypeAlias('G');
var functionG = typedefG.function;
expect(type.element, functionG);
expect(type.element?.enclosingElement, typedefG);
assertElementTypeStrings(type.typeArguments, ['int']);
}
}