(identifier string, index int)
| 78 | } |
| 79 | |
| 80 | func NewArraySelector(identifier string, index int) *ArraySelector { |
| 81 | return &ArraySelector{ |
| 82 | Identifier: identifier, |
| 83 | Index: index, |
| 84 | } |
| 85 | } |
| 86 | func (n *ArraySelector) toString() string { |
| 87 | sb := new(strings.Builder) |
| 88 | if _, err := sb.WriteString(n.Identifier); err != nil { |
no outgoing calls