()
| 602 | } |
| 603 | |
| 604 | private _updateOrdinalMeta(): void { |
| 605 | const store = this._store; |
| 606 | const dimensions = this.dimensions; |
| 607 | for (let i = 0; i < dimensions.length; i++) { |
| 608 | const dimInfo = this._dimInfos[dimensions[i]]; |
| 609 | if (dimInfo.ordinalMeta) { |
| 610 | store.collectOrdinalMeta(dimInfo.storeDimIndex, dimInfo.ordinalMeta); |
| 611 | } |
| 612 | } |
| 613 | } |
| 614 | |
| 615 | private _shouldMakeIdFromName(): boolean { |
| 616 | const provider = this._store.getProvider(); |
no test coverage detected