Skip to content

Commit 952991c

Browse files
committed
Switched lower for upper case due to CA1308
1 parent 886f17b commit 952991c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/extensions/antlrVbaPreParserExtensions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ CompilerConditionalStatementContext.prototype.vbaExpression = function (): strin
1717
return (this.compilerIfStatement() ?? this.compilerElseIfStatement())!
1818
.booleanExpression()
1919
.getText()
20-
.toLowerCase();
20+
.toUpperCase();
2121
};
2222

2323
DirectiveExpressionContext.prototype.vbaExpression = function (): string {
24-
return this.getText().toLowerCase();
24+
return this.getText().toUpperCase();
2525
};

0 commit comments

Comments
 (0)