Small change

This commit is contained in:
Linus K 2022-10-24 01:26:00 +02:00
parent d4ded3572d
commit fc70f99e73

View File

@ -117,8 +117,8 @@ WILDCARDTYPE : 'wildcardtype';
SUPERWILDCARDTYPE : 'superwildcardtype';
TYPEPLACEHOLDER : 'typeplaceholder';
GENERICREFTYPE : 'genericreftype';
THIS : 'this()';
SUPER : 'super()';
THIS : 'this';
SUPER : 'super';
FIELDVAR : 'fieldvar';
NEWARRAY : 'new ArrayList<>()';
LITERAL : 'literal';
@ -138,8 +138,8 @@ LOCALVAR : 'localvar';
RETURN : 'return';
RETURNVOID : 'return void';
METHODCALL : 'methodcall';
THISCALL : 'this';
SUPERCALL : 'super';
THISCALL : 'this()';
SUPERCALL : 'super()';
NEWCLASS : 'newclass';
UNARYEXPR : ('+' | '-' | '++' | '--' | '!');
CLASSNAME : UPPERCASE ( LOWERCASE | UPPERCASE)*;