blob: 6f28467e56a1a3b8ce087ad73a7387887da95769 [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/analysis/features.dart';
import 'package:analyzer/src/generated/engine.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ConditionalExpressionTest);
defineReflectiveTests(ConditionalExpressionWithNnbdTest);
});
}
@reflectiveTest
class ConditionalExpressionTest extends DriverResolutionTest {
test_upward() async {
await resolveTestCode('''
void f(bool a, int b, int c) {
var d = a ? b : c;
print(d);
}
''');
assertType(findNode.simple('d)'), 'int');
}
}
@reflectiveTest
class ConditionalExpressionWithNnbdTest extends ConditionalExpressionTest {
@override
AnalysisOptionsImpl get analysisOptions => AnalysisOptionsImpl()
..contextFeatures = FeatureSet.forTesting(
sdkVersion: '2.3.0', additionalFeatures: [Feature.non_nullable]);
@override
bool get typeToStringWithNullability => true;
@failingTest
test_downward() async {
await resolveTestCode('''
void f(int b, int c) {
var d = a() ? b : c;
print(d);
}
T a<T>() => throw '';
''');
assertInvokeType(findNode.methodInvocation('d)'), 'bool Function()');
}
test_type() async {
await assertNoErrorsInCode('''
main(bool b) {
return b ? 42 : null;
}
''');
assertType(findNode.conditionalExpression('b ?'), 'int?');
}
}