ArrayItem node
| 9 | |
| 10 | // ArrayItem node |
| 11 | type ArrayItem struct { |
| 12 | FreeFloating freefloating.Collection |
| 13 | Position *position.Position |
| 14 | Key node.Node |
| 15 | Val node.Node |
| 16 | Unpack bool |
| 17 | } |
| 18 | |
| 19 | // NewArrayItem node constructor |
| 20 | func NewArrayItem(Key node.Node, Val node.Node, Unpack bool) *ArrayItem { |
nothing calls this directly
no outgoing calls
no test coverage detected