Fix multi-line comments

This commit is contained in:
Henri DF 2016-02-13 15:26:40 -08:00
parent 79cdf31aa7
commit 0d10a3f39c

View File

@ -11,7 +11,7 @@
- In libsinsp, field names cannot start with 'a', 'o', or 'n'. With this parser they can - In libsinsp, field names cannot start with 'a', 'o', or 'n'. With this parser they can
]]-- --]]
local parser = {} local parser = {}
@ -256,7 +256,7 @@ end
Traverses the AST and replaces `in` relational expressions with a sequence of ORs. Traverses the AST and replaces `in` relational expressions with a sequence of ORs.
For example, `a.b in [1, 2]` is expanded to `a.b = 1 or a.b = 2` (in ASTs) For example, `a.b in [1, 2]` is expanded to `a.b = 1 or a.b = 2` (in ASTs)
]]-- --]]
function expand_in(node) function expand_in(node)
local t = node.type local t = node.type