forked from jasder/antlr
Add missing test DuplicatedLeftRecursiveCall_4
This commit is contained in:
parent
a2d0995a37
commit
0fcba25d4e
|
@ -1,6 +1,6 @@
|
|||
import "DuplicatedLeftRecursiveCall.stg"
|
||||
|
||||
Input() ::= "xx"
|
||||
Input() ::= "x"
|
||||
|
||||
Output() ::= ""
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import "DuplicatedLeftRecursiveCall.stg"
|
||||
|
||||
Input() ::= "xxx"
|
||||
Input() ::= "xx"
|
||||
|
||||
Output() ::= ""
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import "DuplicatedLeftRecursiveCall.stg"
|
||||
|
||||
Input() ::= "xxxx"
|
||||
Input() ::= "xxx"
|
||||
|
||||
Output() ::= ""
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
import "DuplicatedLeftRecursiveCall.stg"
|
||||
|
||||
Input() ::= "xxxx"
|
||||
|
||||
Output() ::= ""
|
||||
|
||||
Errors() ::= ""
|
|
@ -26,6 +26,7 @@ TestTemplates ::= [
|
|||
"DuplicatedLeftRecursiveCall_1": [],
|
||||
"DuplicatedLeftRecursiveCall_2": [],
|
||||
"DuplicatedLeftRecursiveCall_3": [],
|
||||
"DuplicatedLeftRecursiveCall_4": [],
|
||||
"InvalidATNStateRemoval": [],
|
||||
"NoViableAltAvoidance": []
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue