()
| 264 | } |
| 265 | |
| 266 | toValues() { |
| 267 | let values = []; |
| 268 | for(let key of Object.keys(this.index)) { |
| 269 | let value: any = this.index[key]; |
| 270 | values.push(value.value || value); |
| 271 | } |
| 272 | return values; |
| 273 | } |
| 274 | |
| 275 | lookup(a,b?,c?,d?,e?,f?,g?,h?,i?,j?) { |
| 276 | let child = this.index[a]; |
no outgoing calls
no test coverage detected