| 43 | var _ Type = (*NullType)(nil) |
| 44 | |
| 45 | type DocumentType struct { |
| 46 | Source *yamlmeta.Document |
| 47 | ValueType Type // typically one of: MapType, ArrayType, ScalarType |
| 48 | Position *filepos.Position |
| 49 | defaultValue interface{} |
| 50 | validations *validations.NodeValidation |
| 51 | } |
| 52 | |
| 53 | type MapType struct { |
| 54 | Items []*MapItemType |
nothing calls this directly
no outgoing calls
no test coverage detected