Replace the value on the top of the stack with the given value.
(JsonScope newTop)
| 662 | * Replace the value on the top of the stack with the given value. |
| 663 | */ |
| 664 | private void replaceTop(JsonScope newTop) { |
| 665 | stack.set(stack.size() - 1, newTop); |
| 666 | } |
| 667 | |
| 668 | @SuppressWarnings("fallthrough") |
| 669 | private JsonToken nextInArray(boolean firstElement) throws IOException { |
no test coverage detected