(int frameCount, SingleNode<V> oldTop)
| 308 | private int nextChar() { return source.nextChar(); } |
| 309 | |
| 310 | private void rollback(int frameCount, SingleNode<V> oldTop) { |
| 311 | trimFramesTo(frameCount); |
| 312 | restoreValues(oldTop); |
| 313 | } |
| 314 | |
| 315 | public List<String> parseTrail() { |
| 316 | List<String> ret = frame.stream().filter(Objects::nonNull).map(s -> s.name).collect(toList()); |
no test coverage detected