1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-27 16:49:31 +00:00
anselme/anselme/parser/expression/secondary/infix/value_check.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["_::_"]
}