blob: 7793685cac288bb868b3eca915cdf19772010baa [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/dart/analysis/experiments.dart';
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(NonConstantSetElementTest);
defineReflectiveTests(NonConstantSetElementWithConstantsTest);
});
}
@reflectiveTest
class NonConstantSetElementTest extends DriverResolutionTest {
test_const_ifElement_thenElseFalse_finalElse() async {
await assertErrorsInCode(
'''
final dynamic a = 0;
var v = const <int>{if (1 < 0) 0 else a};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 59, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 19),
]);
}
test_const_ifElement_thenElseFalse_finalThen() async {
await assertErrorsInCode(
'''
final dynamic a = 0;
var v = const <int>{if (1 < 0) a else 0};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 52, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 19),
]);
}
test_const_ifElement_thenElseTrue_finalElse() async {
await assertErrorsInCode(
'''
final dynamic a = 0;
var v = const <int>{if (1 > 0) 0 else a};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 59, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 19),
]);
}
test_const_ifElement_thenElseTrue_finalThen() async {
await assertErrorsInCode(
'''
final dynamic a = 0;
var v = const <int>{if (1 > 0) a else 0};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 52, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 19),
]);
}
test_const_ifElement_thenFalse_constThen() async {
await assertErrorsInCode(
'''
const dynamic a = 0;
var v = const <int>{if (1 < 0) a};
''',
analysisOptions.experimentStatus.constant_update_2018
? []
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 12),
]);
}
test_const_ifElement_thenFalse_finalThen() async {
await assertErrorsInCode(
'''
final dynamic a = 0;
var v = const <int>{if (1 < 0) a};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 52, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 12),
]);
}
test_const_ifElement_thenTrue_constThen() async {
await assertErrorsInCode(
'''
const dynamic a = 0;
var v = const <int>{if (1 > 0) a};
''',
analysisOptions.experimentStatus.constant_update_2018
? []
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 12),
]);
}
test_const_ifElement_thenTrue_finalThen() async {
await assertErrorsInCode(
'''
final dynamic a = 0;
var v = const <int>{if (1 > 0) a};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 52, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 12),
]);
}
test_const_parameter() async {
await assertErrorsInCode(r'''
f(a) {
return const {a};
}''', [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 23, 1),
]);
}
test_const_spread_final() async {
await assertErrorsInCode(
r'''
final Set x = null;
var v = const {...x};
''',
analysisOptions.experimentStatus.constant_update_2018
? [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 38, 1),
]
: [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 35, 4),
]);
}
test_const_topVar() async {
await assertErrorsInCode('''
final dynamic a = 0;
var v = const <int>{a};
''', [
error(CompileTimeErrorCode.NON_CONSTANT_SET_ELEMENT, 41, 1),
]);
}
test_nonConst_topVar() async {
await assertNoErrorsInCode('''
final dynamic a = 0;
var v = <int>{a};
''');
}
}
@reflectiveTest
class NonConstantSetElementWithConstantsTest extends NonConstantSetElementTest {
@override
AnalysisOptionsImpl get analysisOptions => AnalysisOptionsImpl()
..enabledExperiments = [EnableString.constant_update_2018];
}