Skip to content

Commit c300632

Browse files
committed
updates for missing typedeclaration for LongLong
also reordered them according to their size, because why not? Integer | Long | LongLong | Single | Double | Currency | String
1 parent 000d6be commit c300632

File tree

1 file changed

+2
-2
lines changed
  • Rubberduck.Parsing/Grammar

1 file changed

+2
-2
lines changed

Rubberduck.Parsing/Grammar/VBA.g4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ literal : HEXLITERAL | OCTLITERAL | DATELITERAL | DOUBLELITERAL | INTEGERLITERAL
562562

563563
type : (baseType | complexType) (WS? LPAREN WS? RPAREN)?;
564564

565-
typeHint : '&' | '%' | '#' | '!' | '@' | '$';
565+
typeHint : '%' | '&' | '^' | '!' | '#' | '@' | '$';
566566

567567
visibility : PRIVATE | PUBLIC | FRIEND | GLOBAL;
568568

@@ -889,4 +889,4 @@ fragment V:('v'|'V');
889889
fragment W:('w'|'W');
890890
fragment X:('x'|'X');
891891
fragment Y:('y'|'Y');
892-
fragment Z:('z'|'Z');
892+
fragment Z:('z'|'Z');

0 commit comments

Comments
 (0)