blob: 92339747d2a2e1c22ecaceea76830243a1a3093e [file] [log] [blame]
// Copyright (c) 2018, 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/src/error/codes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(TopTypeInferenceDriverResolutionTest);
});
}
@reflectiveTest
class TopTypeInferenceDriverResolutionTest extends DriverResolutionTest {
test_referenceInstanceVariable_withDeclaredType() async {
await resolveTestCode(r'''
class A {
final int a = b + 1;
}
final b = new A().a;
''');
assertNoTestErrors();
assertElementTypeString(findElement.field('a').type, 'int');
assertElementTypeString(findElement.topVar('b').type, 'int');
}
test_referenceInstanceVariable_withoutDeclaredType() async {
await resolveTestCode(r'''
class A {
final a = b + 1;
}
final b = new A().a;
''');
assertTestErrorsWithCodes([StrongModeCode.TOP_LEVEL_INSTANCE_GETTER]);
assertElementTypeDynamic(findElement.field('a').type);
assertElementTypeDynamic(findElement.topVar('b').type);
}
}