Fix 'in' clause expansion

This commit is contained in:
Henri DF 2016-02-25 10:54:42 -08:00
parent eaeb360b31
commit 4053b7241e

View File

@ -300,7 +300,7 @@ function expand_in(node)
local mapper = function(element) local mapper = function(element)
return { return {
type = "BinaryRelOp", type = "BinaryRelOp",
operator = "eq", operator = "=",
left = node.left, left = node.left,
right = element right = element
} }