MCPcopy Create free account
hub / github.com/chibash/stone / or

Method or

src/stone/Parser.java:362–365  ·  view source on GitHub ↗
(Parser... p)

Source from the content-addressed store, hash-verified

360 return this;
361 }
362 public Parser or(Parser... p) {
363 elements.add(new OrTree(p));
364 return this;
365 }
366 public Parser maybe(Parser p) {
367 Parser p2 = new Parser(p);
368 p2.reset();

Callers 3

insertChoiceMethod · 0.95
ClassParserClass · 0.80
BasicParserClass · 0.80

Calls 1

addMethod · 0.45

Tested by

no test coverage detected