Skip to content

Commit 82d3141

Browse files
committed
Fix mixed tab & space indentention
1 parent cef2478 commit 82d3141

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

internal/filter/parser.y

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,8 @@ filter_rule: filter_chain logical_op filter_chain
126126
}
127127
| filter_rule logical_op filter_chain
128128
{
129-
$$ = reduceFilter($1, $2, $3)
130-
yylex.(*Lexer).rule = $$
129+
$$ = reduceFilter($1, $2, $3)
130+
yylex.(*Lexer).rule = $$
131131
}
132132
;
133133

@@ -184,15 +184,15 @@ exists_expr: identifier
184184
;
185185

186186
identifier: T_IDENTIFIER
187-
{
188-
column, err := url.QueryUnescape($1)
189-
if err != nil {
190-
// Something went wrong, so just panic and filter.Parse will try to recover from this.
191-
panic(err)
192-
}
193-
194-
$$ = column
195-
}
187+
{
188+
column, err := url.QueryUnescape($1)
189+
if err != nil {
190+
// Something went wrong, so just panic and filter.Parse will try to recover from this.
191+
panic(err)
192+
}
193+
194+
$$ = column
195+
}
196196
;
197197

198198
optional_negation: /* empty */ { $$ = "" }

0 commit comments

Comments
 (0)