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 572977b commit 29eb283Copy full SHA for 29eb283
server/src/antlr/vba.g4
@@ -363,7 +363,7 @@ procedureDeclaration
363
: subroutineDeclaration
364
| functionDeclaration
365
| propertyGetDeclaration
366
- | propertyLhsDeclaration
+ | propertySetDeclaration
367
;
368
369
// 5.3.1 Procedure Declarations
@@ -389,7 +389,7 @@ propertyGetDeclaration
389
procedureBody?
390
endLabel? endOfStatement+ END wsc PROPERTY procedureTail?;
391
392
-propertyLhsDeclaration
+propertySetDeclaration
393
: (procedureScope wsc)? (
394
(initialStatic wsc)? PROPERTY wsc (LET | SET) wsc subroutineName wsc? propertyParameters
395
| PROPERTY wsc (LET | SET) wsc subroutineName propertyParameters wsc? trailingStatic)
0 commit comments