(path: string)
| 139 | } |
| 140 | |
| 141 | public result(path: string): any { |
| 142 | if (!this.resultRecords) { |
| 143 | return undefined; |
| 144 | } |
| 145 | return MINode.valueOf(this.resultRecords.results, path); |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | const tokenRegex = /^\d+/; |
no test coverage detected