(cell interface{})
| 213 | } |
| 214 | |
| 215 | func (qr *QueryResult) parseArray(cell interface{}) []interface{} { |
| 216 | var array = cell.([]interface{}) |
| 217 | var arrayLength = len(array) |
| 218 | for i := 0; i < arrayLength; i++ { |
| 219 | array[i] = qr.parseScalar(array[i].([]interface{})) |
| 220 | } |
| 221 | return array |
| 222 | } |
| 223 | |
| 224 | func (qr *QueryResult) parsePath(cell interface{}) Path { |
| 225 | arrays := cell.([]interface{}) |
no test coverage detected