| 9 | } |
| 10 | |
| 11 | char BasicLexer::Eat(){ |
| 12 | assert(!End()); |
| 13 | char c = *it++; |
| 14 | |
| 15 | if(c == '\n'){ |
| 16 | line++; |
| 17 | } |
| 18 | |
| 19 | return c; |
| 20 | } |
| 21 | |
| 22 | bool BasicLexer::EatWord(const char* word){ |
| 23 | size_t i = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected