(dsId: string, fieldId: string, recordId: string)
| 137 | } |
| 138 | |
| 139 | getCellCache(dsId: string, fieldId: string, recordId: string) { |
| 140 | const ds = this.getDsCache(dsId); |
| 141 | if (!ds) { |
| 142 | return NO_CACHE; |
| 143 | } |
| 144 | const field = ds.cellValues.get(fieldId); |
| 145 | if (!field) { |
| 146 | return NO_CACHE; |
| 147 | } |
| 148 | return field.get(recordId) || NO_CACHE; |
| 149 | } |
| 150 | |
| 151 | clearCache() { |
| 152 | this.dsMap.reset(); |
no test coverage detected