We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 565ec6a commit 5a38f39Copy full SHA for 5a38f39
1 file changed
lexer.go
@@ -206,6 +206,9 @@ const (
206
rRegexpClose = '/'
207
)
208
209
+// LexerFlag is a bitset representing a combination of zero or more Lex flags, such as LexNoRegexps,
210
+// LexWordLiterals, and others. These Lex flags affect the Lexer's output, allowing one to disable
211
+// specific tokenization behavior.
212
type LexerFlag uint64
213
214
const (
0 commit comments