mirror of
https://github.com/falcosecurity/falco.git
synced 2025-06-26 14:52:20 +00:00
Fix multi-line comments
This commit is contained in:
parent
79cdf31aa7
commit
0d10a3f39c
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user