()
| 1075 | } |
| 1076 | |
| 1077 | get algorithm() { |
| 1078 | const slots = getSlots(this); |
| 1079 | let cached = slots[kSlotClonedAlgorithm]; |
| 1080 | if (cached === undefined) { |
| 1081 | cached = cloneAlgorithm(slots[kSlotAlgorithm]); |
| 1082 | slots[kSlotClonedAlgorithm] = cached; |
| 1083 | } |
| 1084 | return cached; |
| 1085 | } |
| 1086 | |
| 1087 | get usages() { |
| 1088 | const slots = getSlots(this); |
nothing calls this directly
no test coverage detected