(fj fastJsonNode, visited bool)
| 339 | } |
| 340 | |
| 341 | func (enc *encoder) setVisited(fj fastJsonNode, visited bool) { |
| 342 | if visited { |
| 343 | fj.meta |= visitedBit |
| 344 | } else { |
| 345 | fj.meta &^= visitedBit |
| 346 | } |
| 347 | } |
| 348 | |
| 349 | func (enc *encoder) setFacetsParent(fj fastJsonNode) { |
| 350 | fj.meta |= facetsBit |
no outgoing calls
no test coverage detected