refreshOwnedReactivePaths method
Reconciles already-owned reactive diagnostics after scope attachment.
Implementation
@protected
void refreshOwnedReactivePaths() {
for (final resource in _ownedResources) {
if (resource is LxReactive && resource.ownerId != resourceOwnerPath) {
resource.ownerId = resourceOwnerPath;
resource.refresh();
}
}
}