* Schedules a recalculation of the specified property, but only if this * property is tracked by this node. * * @param {IContextProp<?, ?>} prop * @param {boolean} refreshParent Whether the parent node needs to be looked * up again. * @protected
(prop, refreshParent)
| 228 | * @protected |
| 229 | */ |
| 230 | ping(prop, refreshParent) { |
| 231 | this.usedByKey_?.get(prop.key)?.ping(refreshParent); |
| 232 | } |
| 233 | |
| 234 | /** |
| 235 | * The callback called by the `ContextNode` to notify values of the context |
no test coverage detected