| 63 | } |
| 64 | |
| 65 | type arrayObject struct { |
| 66 | baseObject |
| 67 | values []Value |
| 68 | length uint32 |
| 69 | objCount int |
| 70 | propValueCount int |
| 71 | lengthProp valueProperty |
| 72 | } |
| 73 | |
| 74 | func (a *arrayObject) init() { |
| 75 | a.baseObject.init() |
nothing calls this directly
no outgoing calls
no test coverage detected