We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d06a0 commit db11003Copy full SHA for db11003
v6/pkg/parser/tsl_lexer.l
@@ -58,8 +58,10 @@ RFC3339 {DATE}T{TIME}(Z|{TIME_OFFSET})
58
59
/* Identifier patterns */
60
ID_START {LETTER}|{UNDERSCORE}
61
+ARRAY_SUFFIX (\[[0-9]+\]|\[\*\])
62
ID_CONT {LETTER}|{DIGIT}|{UNDERSCORE}|[./]
-IDENTIFIER {ID_START}{ID_CONT}*
63
+ID_PART ({ID_CONT}|{ARRAY_SUFFIX})*
64
+IDENTIFIER {ID_START}{ID_PART}
65
66
/* Numeric patterns */
67
INTEGER [+-]?{DIGIT}+
0 commit comments