Array node
| 9 | |
| 10 | // Array node |
| 11 | type Array struct { |
| 12 | FreeFloating freefloating.Collection |
| 13 | Position *position.Position |
| 14 | Items []node.Node |
| 15 | } |
| 16 | |
| 17 | // NewArray node constructor |
| 18 | func NewArray(Items []node.Node) *Array { |
nothing calls this directly
no outgoing calls
no test coverage detected