mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-27 16:49:31 +00:00
9 lines
257 B
Lua
9 lines
257 B
Lua
local infix_quote_both = require("parser.expression.secondary.infix.infix_quote_both")
|
|
|
|
local operator_priority = require("common").operator_priority
|
|
|
|
return infix_quote_both {
|
|
operator = "->",
|
|
identifier = "_->_",
|
|
priority = operator_priority["_->_"]
|
|
}
|