| 996 | Value& Reader::currentValue() { return *(nodes_.top()); } |
| 997 | |
| 998 | Reader::Char Reader::getNextChar() { |
| 999 | if (current_ == end_) |
| 1000 | return 0; |
| 1001 | return *current_++; |
| 1002 | } |
| 1003 | |
| 1004 | void Reader::getLocationLineAndColumn(Location location, |
| 1005 | int& line, |
nothing calls this directly
no outgoing calls
no test coverage detected