Closed tony-song closed 1 month ago
`
is parsed to LengthOp(AddOp(tab,1)) `
is parsed to
It should be AddOp(LengthOp(tab), 1)
AddOp(LengthOp(tab), 1)
as far as I can tell, this is a duplicate of #38
Fixed on master, will release a version soon
`
tab+1
is parsed to
LengthOp(AddOp(tab,1)) `It should be
AddOp(LengthOp(tab), 1)