@@ -83,14 +83,11 @@ $$ \n \n y line beginnings and endings ($$)
83
83
^ [ <[a..d]>+ | <[b..e]>+ ] $ bcd y alternation (|)
84
84
^ [ <[a..c]>+ | <[b..e]>+ ] $ bcd y alternation (|)
85
85
^ [ <[a..d]>+ | <[c..e]>+ ] $ bcd y alternation (|)
86
- # todo :any<feature>
87
- b| bcd [Null pattern] alternation (|) - null right arg illegal
86
+ b| bcd [Null regex] alternation (|) - null right arg illegal
88
87
|b bcd y alternation (|) - null left arg ignored
89
- # todo :any<feature>
90
- | bcd [Null pattern] alternation (|) - null both args illegal
88
+ | bcd [Null regex] alternation (|) - null both args illegal
91
89
\| | y alternation (|) - literal must be escaped
92
- # todo :any<feature>
93
- | | [Null pattern] alternation (|) - literal must be escaped
90
+ | | [Null regex] alternation (|) - literal must be escaped
94
91
<[a..d]> && <[b..e]> c y conjunction (&&)
95
92
<[a..d]> && <[d..e]> c n conjunction (&&)
96
93
<[a..b]> && <[b..e]> c n conjunction (&&)
@@ -99,21 +96,15 @@ b| bcd [Null pattern] alternation (|) - null right arg illegal
99
96
^ [ <[a..d]>+ && <[b..e]>+ ] $ bcd y conjunction (&&)
100
97
<[a..c]>+ && <[b..e]>+ bcd y conjunction (&&)
101
98
<[a..d]>+ && <[c..e]>+ bcd y conjunction (&&)
102
- # todo :any<&-conjunciton>
103
- b& bcd [rule error] conjunction (&) - null right arg illegal
104
- # todo :any<&-conjunciton>
105
- &b bcd [rule error] conjunction (&) - null left arg illegal
106
- # todo :any<&-conjunciton>
107
- & bcd [rule error] conjunction (&) - null both args illegal
99
+ b& bcd [Null regex] conjunction (&) - null right arg illegal
100
+ # todo :any<bug>
101
+ &b bcd [Null regex] conjunction (&) - null left arg illegal
102
+ & bcd [Null regex] conjunction (&) - null both args illegal
108
103
\& & y conjunction (&) - literal must be escaped
109
- # todo :any<&-conjunciton>
110
- & & [rule error] conjunction (&) - literal must be escaped
111
- # todo :any<leading |>
112
- a&|b a&|b [rule error] alternation and conjunction (&|) - parse error
113
- # todo :any<&-conjunciton>
114
- & & [rule error] conjunction (&) - literal must be escaped
115
- # todo :any<&-conjunciton>
116
- a|&b a|&b [rule error] alternation and conjunction (|&) - parse error
104
+ & & [Null regex] conjunction (&) - literal must be escaped
105
+ a&|b a&|b [Null regex] alternation and conjunction (&|) - parse error
106
+ & & [Null regex] conjunction (&) - literal must be escaped
107
+ a|&b a|&b [Null regex] alternation and conjunction (|&) - parse error
117
108
|d|b abc y leading alternation ignored
118
109
|d|b abc y leading alternation ignored
119
110
|d |b abc y leading alternation ignored
0 commit comments