blob: a4a48d51e0934bcbe8d3fdabb51b3eb6aaf2dcff [file] [log] [blame]
// Copyright (c) 2020, 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(ConstWithNonConstTest);
});
}
@reflectiveTest
class ConstWithNonConstTest extends PubPackageResolutionTest {
test_inConstContext() async {
await assertErrorsInCode(r'''
class A {
const A(x);
}
class B {
}
main() {
const A(B());
}
''', [
error(CompileTimeErrorCode.CONST_WITH_NON_CONST, 57, 3),
]);
}
test_mixinApplication_constSuperConstructor() async {
await assertNoErrorsInCode(r'''
mixin M {}
class A {
const A();
}
class B = A with M;
const b = const B();
''');
}
test_mixinApplication_constSuperConstructor_field() async {
await assertErrorsInCode(r'''
mixin M {
int i = 0;
}
class A {
const A();
}
class B = A with M;
var b = const B();
''', [
error(CompileTimeErrorCode.CONST_WITH_NON_CONST, 78, 5),
]);
}
test_mixinApplication_constSuperConstructor_getter() async {
await assertNoErrorsInCode(r'''
mixin M {
int get i => 0;
}
class A {
const A();
}
class B = A with M;
var b = const B();
''');
}
test_mixinApplication_constSuperConstructor_setter() async {
await assertNoErrorsInCode(r'''
mixin M {
set(int i) {}
}
class A {
const A();
}
class B = A with M;
var b = const B();
''');
}
test_nonConst_factory() async {
await assertErrorsInCode(r'''
class A {
factory A(int a) => throw 0;
}
void f() {
const A(0);
}
''', [
error(CompileTimeErrorCode.CONST_WITH_NON_CONST, 57, 5),
]);
var node = findNode.singleInstanceCreationExpression;
assertResolvedNodeText(node, r'''
InstanceCreationExpression
keyword: const
constructorName: ConstructorName
type: NamedType
name: A
element: <testLibraryFragment>::@class::A
type: A
staticElement: <testLibraryFragment>::@class::A::@constructor::new
argumentList: ArgumentList
leftParenthesis: (
arguments
IntegerLiteral
literal: 0
parameter: <testLibraryFragment>::@class::A::@constructor::new::@parameter::a
staticType: int
rightParenthesis: )
staticType: A
''');
}
test_nonConst_generative() async {
await assertErrorsInCode(r'''
class A {
A(int a);
}
void f() {
const A(0);
}
''', [
error(CompileTimeErrorCode.CONST_WITH_NON_CONST, 38, 5),
]);
var node = findNode.singleInstanceCreationExpression;
assertResolvedNodeText(node, r'''
InstanceCreationExpression
keyword: const
constructorName: ConstructorName
type: NamedType
name: A
element: <testLibraryFragment>::@class::A
type: A
staticElement: <testLibraryFragment>::@class::A::@constructor::new
argumentList: ArgumentList
leftParenthesis: (
arguments
IntegerLiteral
literal: 0
parameter: <testLibraryFragment>::@class::A::@constructor::new::@parameter::a
staticType: int
rightParenthesis: )
staticType: A
''');
}
}