aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lptree.c2
-rw-r--r--testlabel.lua23
2 files changed, 21 insertions, 4 deletions
diff --git a/lptree.c b/lptree.c
index c59f443..2044a5c 100644
--- a/lptree.c
+++ b/lptree.c
@@ -1089,7 +1089,7 @@ static int verifyrule (lua_State *L, TTree *tree, int *passed, int npassed,
1089 return nb; 1089 return nb;
1090 /* else return verifyrule(L, sib2(tree), passed, npassed, nb); */ 1090 /* else return verifyrule(L, sib2(tree), passed, npassed, nb); */
1091 tree = sib2(tree); goto tailcall; 1091 tree = sib2(tree); goto tailcall;
1092 case TChoice: case TLabChoice: /* must check both children */ /* labeled failure */ 1092 case TChoice: case TLabChoice: case TRecov: /* must check both children */ /* labeled failure */
1093 nb = verifyrule(L, sib1(tree), passed, npassed, nb); 1093 nb = verifyrule(L, sib1(tree), passed, npassed, nb);
1094 /* return verifyrule(L, sib2(tree), passed, npassed, nb); */ 1094 /* return verifyrule(L, sib2(tree), passed, npassed, nb); */
1095 tree = sib2(tree); goto tailcall; 1095 tree = sib2(tree); goto tailcall;
diff --git a/testlabel.lua b/testlabel.lua
index 6ae184f..2243826 100644
--- a/testlabel.lua
+++ b/testlabel.lua
@@ -566,12 +566,29 @@ checkeqlab({nil, 3, "a"}, p:match("a"))
566checkeqlab({nil, 3, "b"}, p:match("b")) 566checkeqlab({nil, 3, "b"}, p:match("b"))
567 567
568p = m.Rec(m.T(3), "b", 3) 568p = m.Rec(m.T(3), "b", 3)
569p:pcode()
570checkeqlab({nil, 0, "a"}, p:match("a")) 569checkeqlab({nil, 0, "a"}, p:match("a"))
571assert(p:match("b") == 2) 570assert(p:match("b") == 2)
572 571
572--[[
573S -> (A //{fail} (!c .)*) C
574A -> a*b
575C -> c+
576]]
577g = m.P{
578 "S",
579 S = m.Rec(m.V"A", (-m.P"c" * m.P(1))^0) * m.V"C",
580 A = m.P"a"^0 * "b",
581 C = m.P"c"^1,
582}
573 583
574print("OK") 584assert(g:match("abc") == 4)
575 585assert(g:match("aabc") == 5)
586assert(g:match("aadc") == 5)
587assert(g:match("bc") == 3)
588checkeqlab({nil, 0, "bc"}, g:match("bbc"))
589assert(g:match("xxc") == 4)
590assert(g:match("c") == 2)
591checkeqlab({nil, 0, ""}, g:match("fail"))
576 592
593print("OK")
577 594