body is the implementation of "Body" used for files processed with the JSON parser.
| 15 | // body is the implementation of "Body" used for files processed with the JSON |
| 16 | // parser. |
| 17 | type body struct { |
| 18 | val node |
| 19 | |
| 20 | // If non-nil, the keys of this map cause the corresponding attributes to |
| 21 | // be treated as non-existing. This is used when Body.PartialContent is |
| 22 | // called, to produce the "remaining content" Body. |
| 23 | hiddenAttrs map[string]struct{} |
| 24 | } |
| 25 | |
| 26 | // expression is the implementation of "Expression" used for files processed |
| 27 | // with the JSON parser. |
nothing calls this directly
no outgoing calls
no test coverage detected