mirror of
https://github.com/DanilaFe/abacus
synced 2025-02-05 19:49:04 -08:00
Make the decimal matching optional.
This commit is contained in:
parent
c350c24f62
commit
1d7134e7f3
@ -37,7 +37,7 @@ public class TreeBuilder {
|
||||
lexer = new Lexer<TokenType>(){{
|
||||
register(" ", TokenType.WHITESPACE);
|
||||
register(",", TokenType.COMMA);
|
||||
register("[0-9]+(\\.[0-9]+)?", TokenType.NUM);
|
||||
register("[0-9]*(\\.[0-9]+)?", TokenType.NUM);
|
||||
register("\\(", TokenType.OPEN_PARENTH);
|
||||
register("\\)", TokenType.CLOSE_PARENTH);
|
||||
}};
|
||||
|
Loading…
Reference in New Issue
Block a user