blob: 2f89a04f53777f9df135b58a8fe437cc8c6fb791 [file] [log] [blame]
// Copyright (c) 2022, 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 'context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(NullAssertPatternResolutionTest);
});
}
@reflectiveTest
class NullAssertPatternResolutionTest extends PubPackageResolutionTest {
test_ifCase() async {
await assertErrorsInCode(
r'''
void f(int? x) {
if (x case var y!) {}
}
''',
[error(WarningCode.UNUSED_LOCAL_VARIABLE, 34, 1)],
);
var node = findNode.singleGuardedPattern.pattern;
assertResolvedNodeText(node, r'''
NullAssertPattern
pattern: DeclaredVariablePattern
keyword: var
name: y
declaredElement: hasImplicitType y@34
type: int
matchedValueType: int
operator: !
matchedValueType: int?
''');
}
test_switchCase() async {
await assertErrorsInCode(
r'''
void f(int? x) {
switch (x) {
case var y!:
break;
}
}
''',
[error(WarningCode.UNUSED_LOCAL_VARIABLE, 45, 1)],
);
var node = findNode.singleGuardedPattern.pattern;
assertResolvedNodeText(node, r'''
NullAssertPattern
pattern: DeclaredVariablePattern
keyword: var
name: y
declaredElement: hasImplicitType y@45
type: int
matchedValueType: int
operator: !
matchedValueType: int?
''');
}
test_variableDeclaration() async {
await assertErrorsInCode(
r'''
void f(int? x) {
var (a!) = x;
}
''',
[error(WarningCode.UNUSED_LOCAL_VARIABLE, 24, 1)],
);
var node = findNode.singlePatternVariableDeclaration;
assertResolvedNodeText(node, r'''
PatternVariableDeclaration
keyword: var
pattern: ParenthesizedPattern
leftParenthesis: (
pattern: NullAssertPattern
pattern: DeclaredVariablePattern
name: a
declaredElement: hasImplicitType a@24
type: int
matchedValueType: int
operator: !
matchedValueType: int?
rightParenthesis: )
matchedValueType: int?
equals: =
expression: SimpleIdentifier
token: x
element: <testLibraryFragment>::@function::f::@parameter::x#element
staticType: int?
patternTypeSchema: _
''');
}
}