(fj fastJsonNode, list bool)
| 331 | } |
| 332 | |
| 333 | func (enc *encoder) setList(fj fastJsonNode, list bool) { |
| 334 | if list { |
| 335 | fj.meta |= listBit |
| 336 | } else { |
| 337 | fj.meta &^= listBit |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | func (enc *encoder) setVisited(fj fastJsonNode, visited bool) { |
| 342 | if visited { |
no outgoing calls