blob: 7b76cf51e12a75b3c2b11013cb1f1387f91718a7 [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:test_reflective_loader/test_reflective_loader.dart';
import 'context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(IfElementTest);
defineReflectiveTests(IfElementWithNullSafetyTest);
});
}
@reflectiveTest
class IfElementTest extends PubPackageResolutionTest {
test_condition_rewrite() async {
await assertNoErrorsInCode(r'''
void f(bool Function() b) {
<int>[if ( b() ) 0];
}
''');
assertFunctionExpressionInvocation(
findNode.functionExpressionInvocation('b()'),
element: null,
typeArgumentTypes: [],
invokeType: 'bool Function()',
type: 'bool',
);
}
}
@reflectiveTest
class IfElementWithNullSafetyTest extends IfElementTest
with WithNullSafetyMixin {}