blob: 417d1216acde71586616a9989bcfe128fef49934 [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/src/error/codes.dart';
import 'package:analyzer/src/generated/engine.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/driver_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ListElementTypeNotAssignableTest);
defineReflectiveTests(ListElementTypeNotAssignableWithUIAsCodeTest);
});
}
@reflectiveTest
class ListElementTypeNotAssignableTest extends DriverResolutionTest {
test_explicitTypeArgs_const() async {
await assertErrorsInCode('''
var v = const <String>[42];
''', [CheckedModeCompileTimeErrorCode.LIST_ELEMENT_TYPE_NOT_ASSIGNABLE]);
}
test_explicitTypeArgs_notConst() async {
await assertErrorsInCode('''
var v = <String> [42];
''', [StaticWarningCode.LIST_ELEMENT_TYPE_NOT_ASSIGNABLE]);
}
}
@reflectiveTest
class ListElementTypeNotAssignableWithUIAsCodeTest
extends ListElementTypeNotAssignableTest {
@override
AnalysisOptionsImpl get analysisOptions => AnalysisOptionsImpl()
..enabledExperiments = ['control-flow-collections', 'spread-collections'];
test_spread_valid_const() async {
await assertNoErrorsInCode('''
var v = const <String>[...['a', 'b']];
''');
}
test_spread_valid_nonConst() async {
await assertNoErrorsInCode('''
var v = <String>[...['a', 'b']];
''');
}
}