Files
sdk/tests/language/patterns/pattern_variable_constant_scope_test.dart
Robert Nystrom dbaf041ae4 Format tests/language/p*.
Change-Id: Ia3238c1781422ec5eb7a219a5cf8af645a4c5876
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/409000
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Lasse Nielsen <lrn@google.com>
Auto-Submit: Bob Nystrom <rnystrom@google.com>
2025-02-11 15:31:25 -08:00

147 lines
5.4 KiB
Dart

// Copyright (c) 2023, 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.
/// A variable declared by a pattern is in scope in the pattern but can't be
/// used in constant expression inside the pattern.
void testSwitchStatement(int x) {
switch (x) {
case var a && == a:
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
'error';
case == b && var b:
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
// [cfe] Undefined name 'b'.
'error';
}
}
void testSwitchStatementInScope(int x) {
const a = 'outer';
const b = 'outer';
switch (x) {
case var a && == a:
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
'error';
case == b && var b:
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
'error';
}
}
String testSwitchExpression(int x) {
return switch (x) {
var a && == a => 'error',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
== b && var b => 'error',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
// [cfe] Undefined name 'b'.
_ => 'other',
};
}
String testSwitchExpressionInScope(int x) {
const a = 'outer';
const b = 'outer';
return switch (x) {
var a && == a => 'error',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
== b && var b => 'error',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
_ => 'other',
};
}
void testIfCaseStatement(int x) {
if (x case var a && == a) {}
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
if (x case == b && var b) {}
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
// [cfe] Undefined name 'b'.
}
void testIfCaseStatementInScope(int x) {
const a = 'outer';
const b = 'outer';
if (x case var a && == a) {}
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
if (x case == b && var b) {}
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
}
List<String> testIfCaseElement(int x) {
return [
if (x case var a && == a) 'one',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
if (x case == b && var b) 'two',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
// [cfe] Undefined name 'b'.
];
}
List<String> testIfCaseElementInScope(int x) {
const a = 'outer';
const b = 'outer';
return [
if (x case var a && == a) 'one',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Read of a non-const variable is not a constant expression.
if (x case == b && var b) 'two',
// ^
// [analyzer] COMPILE_TIME_ERROR.NON_CONSTANT_RELATIONAL_PATTERN_EXPRESSION
// [analyzer] COMPILE_TIME_ERROR.REFERENCED_BEFORE_DECLARATION
// [cfe] Local variable 'b' can't be referenced before it is declared.
];
}