| 352 | } |
| 353 | |
| 354 | class DebugBreakP: public BaseP |
| 355 | { |
| 356 | public: |
| 357 | DebugBreakP(){ } |
| 358 | virtual ~DebugBreakP(){ } |
| 359 | virtual bool Parse(char** str, SpaceRule space) |
| 360 | { |
| 361 | (void)str; (void)space; |
| 362 | return true; |
| 363 | } |
| 364 | protected: |
| 365 | }; |
| 366 | Rule breakP(){ return Rule(new DebugBreakP()); } |
| 367 | |
| 368 | class Grammar |
nothing calls this directly
no outgoing calls
no test coverage detected