blob: efc3e5e40b2d8ad1a4afc8b3a8687bd485771313 [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
declaredFragment: isPublic y@34
element: hasImplicitType isPublic
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
declaredFragment: isPublic y@45
element: hasImplicitType isPublic
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
declaredFragment: isPublic a@24
element: hasImplicitType isPublic
type: int
matchedValueType: int
operator: !
matchedValueType: int?
rightParenthesis: )
matchedValueType: int?
equals: =
expression: SimpleIdentifier
token: x
element: <testLibrary>::@function::f::@formalParameter::x
staticType: int?
patternTypeSchema: _
''');
}
}