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