File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -205,13 +205,12 @@ func (l *lexer) lex(instruction []byte) ([]Token, error) {
205
205
for l .pos < l .instructionLen {
206
206
r = false
207
207
for _ , m := range matchers {
208
- // fmt.Println("here!", string(l.instruction[l.pos:]))
209
208
if r = m (); r {
210
209
securityPos = l .pos
211
210
break
212
211
}
213
212
}
214
- fmt . Println ( "l.tokens" , l . tokens )
213
+
215
214
if r {
216
215
continue
217
216
}
@@ -333,9 +332,8 @@ func (l *lexer) MatchBooleanToken() bool {
333
332
i := l .pos
334
333
for i < l .instructionLen &&
335
334
(unicode .IsLetter (rune (l .instruction [i ])) ||
336
- unicode .IsDigit (rune (l .instruction [i ])) ||
337
335
l .instruction [i ] == '_' ||
338
- l .instruction [i ] == '@' /* || l.instruction[i] == '.'*/ ) {
336
+ l .instruction [i ] == '@' ) {
339
337
i ++
340
338
}
341
339
You can’t perform that action at this time.
0 commit comments