We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bb74b4 commit d7de9f6Copy full SHA for d7de9f6
1 file changed
pkgs/args/test/utils_test.dart
@@ -291,7 +291,7 @@ needs to be wrapped.
291
test('Matches every valid termination character (A-Z, a-z)', () {
292
// CSI sequences usually end in the range 0x40 to 0x7E
293
// We check all standard alphabetic termination characters.
294
- for (int i = 0x40; i <= 0x7E; i++) {
+ for (var i = 0x40; i <= 0x7E; i++) {
295
if (i > 90 && i < 97) continue; // Skip non-alphas like [ \ ] ^ _ `
296
297
final char = String.fromCharCode(i);
0 commit comments