mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-29 01:29:31 +00:00
Aliases: add wrap > operator
This commit is contained in:
parent
2cd910389b
commit
b7761311fe
10 changed files with 34 additions and 25 deletions
|
|
@ -30,6 +30,7 @@ local common = {
|
|||
-- list of operators and their priority that are handled through regular function calls & can be overloaded/etc. by the user
|
||||
regular_operators = {
|
||||
prefixes = {
|
||||
{ ">", 3.1 }, -- just above _=_
|
||||
{ "~", 3.5 }, -- just below _~_ so else-if (~ condition ~ expression) parses as (~ (condition ~ expression))
|
||||
{ "!", 11 },
|
||||
{ "-", 11 },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue