Rename the record_edge accessor to record_source

This commit is contained in:
Dennis Kobert
2026-09-06 16:26:33 +00:00
parent 92adc524ca
commit daf0231c0c
2 changed files with 4 additions and 4 deletions

View File

@@ -197,7 +197,7 @@ impl DynamicExecutor {
let edge = self
.tree
.get_by_path(node_path)
.and_then(SourceHandle::record_edge)
.and_then(SourceHandle::record_source)
.ok_or_else(|| IntrospectError::PathNotFound(node_path.to_vec()))?;
let arena = self.arena.lock().unwrap_or_else(PoisonError::into_inner);
let persistent = self.persistent.lock().unwrap_or_else(PoisonError::into_inner);