| 2193 | } |
| 2194 | |
| 2195 | type StringArray struct { |
| 2196 | tengo.ObjectImpl |
| 2197 | Value []string |
| 2198 | } |
| 2199 | |
| 2200 | func (o *StringArray) String() string { |
| 2201 | return strings.Join(o.Value, ", ") |
nothing calls this directly
no outgoing calls
no test coverage detected