| 345 | } |
| 346 | |
| 347 | char * ODBlock::nextTerminal() //returns a pointer to the next terminal string. |
| 348 | { |
| 349 | char * s = (*termiter)->identifier; |
| 350 | ++termiter; |
| 351 | |
| 352 | static char noname[] = "_noname"; |
| 353 | if (s) |
| 354 | return s; |
| 355 | else |
| 356 | return noname; |
| 357 | } |
| 358 | |
| 359 | bool ODBlock::moreSubBlocks() //returns true if more sub blocks are available |
| 360 | { |
no outgoing calls
no test coverage detected