Replace the value on the top of the stack with the given value.
(JsonScope topOfStack)
| 296 | * Replace the value on the top of the stack with the given value. |
| 297 | */ |
| 298 | private void replaceTop(JsonScope topOfStack) { |
| 299 | stack.set(stack.size() - 1, topOfStack); |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * Encodes the property name. |
no test coverage detected