You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NUMBER
'-'? INT'.'INT EXP? //1.35,1.35E-9,0.3,-4.5
| '-'? INT EXP //1e10-3e4
| '-'? INT //-3,45
;
fragment INT: '0'|[1-9][0-9]*; //noleadingzeros
fragment EXP: [Ee][+\-]? INT;