| 934 | Value &Reader::currentValue() { return *(nodes_.top()); } |
| 935 | |
| 936 | Reader::Char Reader::getNextChar() { |
| 937 | if (current_ == end_) |
| 938 | return 0; |
| 939 | return *current_++; |
| 940 | } |
| 941 | |
| 942 | void Reader::getLocationLineAndColumn(Location location, |
| 943 | int &line, |
nothing calls this directly
no outgoing calls
no test coverage detected