File tree 1 file changed +4
-4
lines changed
parboiled-core/src/test/scala/org/parboiled2 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ object ActionSpec extends TestParserSpec {
24
24
val tests = Tests {
25
25
26
26
" The Parser should correctly handle" - {
27
- " `capture` simple" - new TestParser1 [String ] {
27
+ /* "`capture` simple" - new TestParser1[String] {
28
28
def targetRule = rule(capture('b'))
29
29
"b" must beMatchedWith("b")
30
30
}
@@ -167,7 +167,7 @@ object ActionSpec extends TestParserSpec {
167
167
def testRule = rule(capture("x") ~> (_ :: 1 :: 3.0 :: HNil))
168
168
def targetRule = testRule
169
169
"x" must beMatchedWith("x" :: 1 :: 3.0 :: HNil)
170
- }
170
+ }*/
171
171
172
172
/* FIXME: one or more of these don't terminate while typing "`~>` with a statement block" - new TestParser1[Char] {
173
173
var captured = ' '
@@ -192,7 +192,7 @@ object ActionSpec extends TestParserSpec {
192
192
def targetRule = testRule
193
193
"x" must beMismatched
194
194
"xx" must beMatchedWith("x")
195
- }
195
+ }*/
196
196
197
197
" `~>` producing an expression evaluating to a rule" - new TestParser0 {
198
198
def testRule = rule(capture(anyOf(" ab" )) ~> (s => if (s == " a" ) ch('b' ) else ch('a' )) ~ EOI )
@@ -201,7 +201,7 @@ object ActionSpec extends TestParserSpec {
201
201
" ba" must beMatched
202
202
" a" must beMismatched
203
203
" b" must beMismatched
204
- }*/
204
+ }
205
205
}
206
206
}
207
207
}
You can’t perform that action at this time.
0 commit comments