Skip to content

Commit

Permalink
docs(userspace/libsinsp/filter/parser): update grammar doc
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Grasso <[email protected]>
  • Loading branch information
leogr authored and poiana committed Jan 16, 2025
1 parent bceb3b1 commit 8e1b1a3
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions userspace/libsinsp/filter/parser.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
/*
Copyright (C) 2023 The Falco Authors.
Copyright (C) 2025 The Falco Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -64,10 +64,14 @@ class RE2;
// UnaryOperator ::= 'exists'
// NumOperator ::= '<=' | '<' | '>=' | '>'
// StrOperator ::= '==' | '=' | '!='
// | 'glob ' | 'iglob '
// | 'contains ' | 'icontains ' | 'bcontains '
// | 'startswith ' | 'bstartswith ' | 'endswith '
// ListOperator ::= 'intersects' | 'in' | 'pmatch'
// | 'bcontains' | 'bstartswith'
// | 'contains'
// | 'endswith'
// | 'glob'
// | 'icontains'
// | 'startswith'
// | 'regex'
// ListOperator ::= 'in' | 'intersects' | 'pmatch'
// FieldTransformerVal ::= 'val('
// FieldTransformerType ::= 'tolower(' | 'toupper(' | 'b64(' | 'basename(' | 'len('
//
Expand Down

0 comments on commit 8e1b1a3

Please sign in to comment.