| 38 | void SetActionPolicy(ActionPolicy pol){ actionPol = pol; } |
| 39 | |
| 40 | Rule chP(char ch){ return Rule(new ChlitP(ch)); } |
| 41 | Rule strP(char* str){ return Rule(new StrlitP(str)); } |
| 42 | |
| 43 | Rule operator ! (Rule a){ return Rule(new RepeatP(a, ZERO_ONE)); } |
no test coverage detected