qt 6.5.1 original

This commit is contained in:
kleuter
2023-10-29 23:33:08 +01:00
parent 71d22ab6b0
commit 85d238dfda
21202 changed files with 5499099 additions and 0 deletions

View File

@ -0,0 +1 @@
LETX

View File

@ -0,0 +1 @@
TOK_LET|LET

View File

@ -0,0 +1,3 @@
[Tokens]
TOK_LET = LET
TOK_LETXX = LETXX

View File

@ -0,0 +1 @@
LETXTRA

View File

@ -0,0 +1,2 @@
TOK_LET|LET
TOK_XTRA|XTRA

View File

@ -0,0 +1,4 @@
[Tokens]
TOK_LET = LET
TOK_LETXX = LETXX
TOK_XTRA = XTRA

View File

@ -0,0 +1 @@
abcdAbcDABCDeFgEFGefgEfghiHIHihI

View File

@ -0,0 +1,14 @@
TOK_AB|ab
TOK_CD|cd
TOK_AB|Ab
TOK_CD|cD
TOK_AB|AB
TOK_CD|CD
TOK_EFG|eFg
TOK_EFG|EFG
TOK_EFG|efg
TOK_EFG|Efg
TOK_HI|hi
TOK_HI|HI
TOK_HI|Hi
TOK_HI|hI

View File

@ -0,0 +1,7 @@
[Options]
case-insensitive
[Tokens]
TOK_AB = ab
TOK_CD = cd
TOK_EFG = [e-g]{3}
TOK_HI = [hi]{2}

View File

@ -0,0 +1 @@
/* comment with stuff *//*another comment with * stars * inside*/

View File

@ -0,0 +1,2 @@
TOK_COMMENT|/* comment with stuff */
TOK_COMMENT|/*another comment with * stars * inside*/

View File

@ -0,0 +1,2 @@
[Tokens]
TOK_COMMENT = \/\*[^*]*\*+([^/*][^*]*\*+)*\/

1
util/lexgen/tests/testdata/dot/input vendored Normal file
View File

@ -0,0 +1 @@
afbcxd

2
util/lexgen/tests/testdata/dot/output vendored Normal file
View File

@ -0,0 +1,2 @@
TOK_AB|afb
TOK_CD|cxd

View File

@ -0,0 +1,3 @@
[Tokens]
TOK_AB = a.b
TOK_CD = c.d

View File

@ -0,0 +1 @@
aycabd

View File

@ -0,0 +1,2 @@
TOK_A|ayc
TOK_B|abd

View File

@ -0,0 +1,3 @@
[Tokens]
TOK_A = a[^b]c
TOK_B = abd

View File

@ -0,0 +1 @@
"a

View File

@ -0,0 +1 @@
TOK_QUOTEA|"a

View File

@ -0,0 +1,2 @@
[Tokens]
TOK_QUOTEA = ["]a

View File

@ -0,0 +1 @@
quotedstring

View File

@ -0,0 +1 @@
TOK_STR|quotedstring

View File

@ -0,0 +1,2 @@
[Tokens]
TOK_STR = "quotedstring"

View File

@ -0,0 +1 @@
abcd

View File

@ -0,0 +1,2 @@
TOK_AB|ab
TOK_CD|cd

View File

@ -0,0 +1,3 @@
[Tokens]
TOK_AB = ab
TOK_CD = cd

View File

@ -0,0 +1 @@
abaf

View File

@ -0,0 +1,2 @@
TOK_AB|ab
TOK_AZ|af

View File

@ -0,0 +1,3 @@
[Tokens]
TOK_AB = ab
TOK_AZ = a[a-z]

View File

@ -0,0 +1 @@
abd

View File

@ -0,0 +1,3 @@
TOK_A|a
TOK_B|b
TOK_D|d

View File

@ -0,0 +1,4 @@
[Tokens]
TOK_D = [abcd]
TOK_B = [bc]
TOK_A = a