| 57 | } |
| 58 | |
| 59 | type MapItemType struct { |
| 60 | Key interface{} // usually a string |
| 61 | ValueType Type |
| 62 | Position *filepos.Position |
| 63 | defaultValue interface{} |
| 64 | validations *validations.NodeValidation |
| 65 | } |
| 66 | |
| 67 | type ArrayType struct { |
| 68 | ItemsType Type |
nothing calls this directly
no outgoing calls
no test coverage detected