Initializes this object with a reference of the input.
| 7571 | |
| 7572 | // Initializes this object with a reference of the input. |
| 7573 | void InitRef(const Element* array, size_t a_size) { |
| 7574 | array_ = array; |
| 7575 | size_ = a_size; |
| 7576 | clone_ = &NativeArray::InitRef; |
| 7577 | } |
| 7578 | |
| 7579 | const Element* array_; |
| 7580 | size_t size_; |
nothing calls this directly
no outgoing calls
no test coverage detected