Skip to content

Commit d7de9f6

Browse files
committed
local variable type annotation diagnostic
1 parent 6bb74b4 commit d7de9f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkgs/args/test/utils_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ needs to be wrapped.
291291
test('Matches every valid termination character (A-Z, a-z)', () {
292292
// CSI sequences usually end in the range 0x40 to 0x7E
293293
// We check all standard alphabetic termination characters.
294-
for (int i = 0x40; i <= 0x7E; i++) {
294+
for (var i = 0x40; i <= 0x7E; i++) {
295295
if (i > 90 && i < 97) continue; // Skip non-alphas like [ \ ] ^ _ `
296296

297297
final char = String.fromCharCode(i);

0 commit comments

Comments
 (0)