Git bookkeeping
This commit is contained in:
parent
ee8fb64e97
commit
c51a91c470
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@ tags
|
|||||||
bp
|
bp
|
||||||
.*
|
.*
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
/Lua/builtins.h
|
||||||
|
1
tests/27-left-recursion.in
Normal file
1
tests/27-left-recursion.in
Normal file
@ -0,0 +1 @@
|
|||||||
|
xyyyyyy
|
1
tests/27-left-recursion.out
Normal file
1
tests/27-left-recursion.out
Normal file
@ -0,0 +1 @@
|
|||||||
|
{xyyyyyy}
|
2
tests/27-left-recursion.sh
Normal file
2
tests/27-left-recursion.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Left recursion should work
|
||||||
|
bp -p 'xys: (xys / `x) `y; xys => "{@0}"'
|
3
tests/28-left-recursion2.in
Normal file
3
tests/28-left-recursion2.in
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
ab!
|
||||||
|
ab!c!
|
||||||
|
ab!cd!!
|
3
tests/28-left-recursion2.out
Normal file
3
tests/28-left-recursion2.out
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
{ab!}
|
||||||
|
{ab!c!}
|
||||||
|
{ab!cd!!}
|
2
tests/28-left-recursion2.sh
Normal file
2
tests/28-left-recursion2.sh
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# Left recursion has some tricky edge cases like this:
|
||||||
|
bp -p 'foo: (foo / `a-z) (foo / `a-z) `!; foo => "{@0}"'
|
Loading…
Reference in New Issue
Block a user