(path: string)
| 72 | } |
| 73 | |
| 74 | result(path: string): any { |
| 75 | if (!this.resultRecords) |
| 76 | return undefined; |
| 77 | return MINode.valueOf(this.resultRecords.results, path); |
| 78 | } |
| 79 | |
| 80 | static valueOf(start: any, path: string): any { |
| 81 | if (!start) |
no test coverage detected