mirror of
https://github.com/Reuh/anselme.git
synced 2025-10-27 16:49:31 +00:00
The previous system needed to store of the scope and full AST to build a Resumable object, which means that if persisted, updating the resumable script will have no effect. The new system instead uses an anchor token and does not require any information besides the anchor name.
9 lines
260 B
Lua
9 lines
260 B
Lua
local infix_quote_right = require("parser.expression.secondary.infix.infix_quote_right")
|
|
|
|
local operator_priority = require("common").operator_priority
|
|
|
|
return infix_quote_right {
|
|
operator = "~>",
|
|
identifier = "_~>_",
|
|
priority = operator_priority["_~>_"]
|
|
}
|