| 35 | var _ = []Node{&DocumentSet{}, &Map{}, &Array{}} |
| 36 | |
| 37 | type DocumentSet struct { |
| 38 | Comments []*Comment |
| 39 | AllComments []*Comment |
| 40 | |
| 41 | Items []*Document |
| 42 | Position *filepos.Position |
| 43 | |
| 44 | meta map[string]interface{} |
| 45 | annotations interface{} |
| 46 | originalBytes *[]byte |
| 47 | } |
| 48 | |
| 49 | type Document struct { |
| 50 | Comments []*Comment |
nothing calls this directly
no outgoing calls
no test coverage detected