mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-08-03 21:21:33 +00:00
idea: brace matching and function resolution
This commit is contained in:
@ -39,9 +39,9 @@ enum class TokenType(vararg properties: TokenTypeProperty) {
|
||||
RightBracket(SingleChar(']')),
|
||||
LeftParentheses(SingleChar('(')),
|
||||
RightParentheses(SingleChar(')')),
|
||||
Not(ManyChars("not"), OperatorFamily),
|
||||
Mod(ManyChars("mod"), OperatorFamily),
|
||||
Rem(ManyChars("rem"), OperatorFamily),
|
||||
Not(ManyChars("not"), KeywordFamily),
|
||||
Mod(ManyChars("mod"), KeywordFamily),
|
||||
Rem(ManyChars("rem"), KeywordFamily),
|
||||
Comma(SingleChar(',')),
|
||||
DotDotDot(ManyChars("...")),
|
||||
DotDot(ManyChars(".."), Promotion('.', DotDotDot)),
|
||||
|
Reference in New Issue
Block a user