This commit is contained in:
Gulg 2023-01-22 07:50:27 +00:00 committed by GitHub
commit 0d064dbce1
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -53,7 +53,7 @@ fieldlist = field {fieldsep field} [fieldsep]
field = '[' exp ']' '=' exp | NAME '=' exp | exp
fieldsep = ',' | ';'
compoundop :: '+=' | '-=' | '*=' | '/=' | '%=' | '^=' | '..='
compoundop = '+=' | '-=' | '*=' | '/=' | '%=' | '^=' | '..='
binop = '+' | '-' | '*' | '/' | '^' | '%' | '..' | '<' | '<=' | '>' | '>=' | '==' | '~=' | 'and' | 'or'
unop = '-' | 'not' | '#'