mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-28 00:59:31 +00:00
Re-add alternative : operator for pairs
This commit is contained in:
parent
4284b06f10
commit
ef5e1a577f
7 changed files with 36 additions and 22 deletions
|
|
@ -39,12 +39,14 @@ common = {
|
|||
"&_",
|
||||
-- binop
|
||||
"_;_",
|
||||
"_=_", "_:_",
|
||||
"_!=_", "_==_", "_>=_", "_<=_", "_<_", "_>_",
|
||||
"_+_", "_-_",
|
||||
"_*_", "_//_", "_/_", "_%_",
|
||||
"_::_", "_=_",
|
||||
"_::_",
|
||||
"_^_",
|
||||
"_._", "_!_",
|
||||
"_!_",
|
||||
"_._",
|
||||
-- suffix unop
|
||||
"_;",
|
||||
"_!",
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ local binops_prio = {
|
|||
[2] = { ":=", "+=", "-=", "//=", "/=", "*=", "%=", "^=" },
|
||||
[3] = { "," },
|
||||
[4] = { "~?", "~", "#" },
|
||||
[5] = { "=" },
|
||||
[5] = { "=", ":" },
|
||||
[6] = { "|", "&" },
|
||||
[7] = { "!=", "==", ">=", "<=", "<", ">" },
|
||||
[8] = { "+", "-" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue