blob: 89a67c00e2c434e559a1891430091255097bd785 [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:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(ConstSetElementNotPrimitiveEqualityTest);
});
}
@reflectiveTest
class ConstSetElementNotPrimitiveEqualityTest extends PubPackageResolutionTest {
test_implementsEqEq_constField() async {
await assertErrorsInCode(r'''
class A {
static const a = const A();
const A();
operator ==(other) => false;
}
main() {
const {A.a};
}
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 104,
3),
]);
}
test_implementsEqEq_direct() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
main() {
const {const A()};
}
''', [
error(
CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 74, 9),
]);
}
test_implementsEqEq_dynamic() async {
// Note: static type of B.a is "dynamic", but actual type of the const
// object is A. We need to make sure we examine the actual type when
// deciding whether there is a problem with operator==.
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
class B {
static const a = const A();
}
main() {
const {B.a};
}
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 116,
3),
]);
}
test_implementsEqEq_factory() async {
await assertErrorsInCode(r'''
class A { const factory A() = B; }
class B implements A {
const B();
operator ==(o) => true;
}
main() {
var m = const {const A()};
print(m);
}
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 128,
9),
]);
}
test_implementsEqEq_nestedIn_instanceCreation() async {
await assertErrorsInCode(r'''
class A {
const A();
bool operator ==(other) => false;
}
class B {
const B(_);
}
main() {
const B({A()});
}
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 110,
3),
]);
}
test_implementsEqEq_record_named() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
const x = {
(a: 0, b: const A()),
};
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 71,
20),
]);
}
test_implementsEqEq_record_positional() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
const x = {
(0, const A()),
};
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 71,
14),
]);
}
test_implementsEqEq_spread_intoList_set() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
main() {
const [...{A()}];
}
''', [
error(
CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 79, 3),
]);
}
test_implementsEqEq_spread_intoSet_list() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
main() {
const {...[A()]};
}
''', [
error(
CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 75, 8),
]);
}
test_implementsEqEq_spread_intoSet_set() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
main() {
const {...{A()}};
}
''', [
error(
CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 79, 3),
]);
}
test_implementsEqEq_super() async {
await assertErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
class B extends A {
const B();
}
main() {
const {const B()};
}
''', [
error(CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 109,
9),
]);
}
test_implementsHashCode_direct() async {
await assertErrorsInCode(r'''
const v = {A()};
class A {
const A();
int get hashCode => 0;
}
''', [
error(
CompileTimeErrorCode.CONST_SET_ELEMENT_NOT_PRIMITIVE_EQUALITY, 11, 3),
]);
}
test_implementsNone_record_named() async {
await assertNoErrorsInCode(r'''
class A {
const A();
}
const x = {
(a: 0, b: const A()),
};
''');
}
test_implementsNone_record_positional() async {
await assertNoErrorsInCode(r'''
class A {
const A();
}
const x = {
(0, const A()),
};
''');
}
test_listLiteral_spread() async {
await assertNoErrorsInCode(r'''
class A {
const A();
operator ==(other) => false;
}
main() {
const [...[A()]];
}
''');
}
}