We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 886f17b commit 952991cCopy full SHA for 952991c
server/src/extensions/antlrVbaPreParserExtensions.ts
@@ -17,9 +17,9 @@ CompilerConditionalStatementContext.prototype.vbaExpression = function (): strin
17
return (this.compilerIfStatement() ?? this.compilerElseIfStatement())!
18
.booleanExpression()
19
.getText()
20
- .toLowerCase();
+ .toUpperCase();
21
};
22
23
DirectiveExpressionContext.prototype.vbaExpression = function (): string {
24
- return this.getText().toLowerCase();
+ return this.getText().toUpperCase();
25
0 commit comments