[libxml2]Add libxml2 library

This commit is contained in:
zhoujiale
2026-07-26 16:57:28 +08:00
committed by zhoujiale
parent 0a44ec8a06
commit e841ac915d
3790 changed files with 668244 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#
# tests just "a"
#
t 0 1 a
f 1
-------
a
=>
a
a
=>
=>
b
=>
+26
View File
@@ -0,0 +1,26 @@
#
# Tests a[ab]*
#
t 0 1 a
t 1 1 a
t 1 1 b
f 1
-------
a
=>
a
a
=>
a
b
a
b
a
b
=>
b
=>
a
c
=>
=>
+43
View File
@@ -0,0 +1,43 @@
#
# Tests: a[ab]*a{2,3}
#
t 0 1 a
t 1 1 a
t 1 1 b
c 1 2 2 3 a
f 2
-------
a
a
a
=>
# Pass
a
b
a
a
=>
# Pass
a
a
a
a
a
a
a
a
a
=>
# Pass
a
b
a
=>
# Fail
a
b
a
a
b
=>
# Fail
+30
View File
@@ -0,0 +1,30 @@
#
# Tests ab*a with an eliminated epsilon transition
#
t 0 1 a
t 1 2 b
e 1 2
t 2 2 b
t 2 3 a
f 3
-------
a
a
=>
# Pass
a
b
b
a
=>
# Pass
a
b
=>
# Fail
a
b
a
b
=>
# Fail
+19
View File
@@ -0,0 +1,19 @@
#
# purchaseOrder
#
t 0 1 shipTo
t 1 2 billTo
t 2 3 comment
t 3 4 items
e 2 3
f 4
-------
shipTo
billTo
comment
items
=>
shipTo
billTo
items
=>