You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make PlannedNode conform to CustomStringConvertible.
Some checking logic in the test infrastructure reports errors with lists of PlannedNodes, and it is much easier to triage those errors if the identity of the nodes are present in the error message.
Also changed one such method to include this information rather than raw counts.
Copy file name to clipboardExpand all lines: Sources/SWBCore/PlannedNode.swift
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ public import SWBUtil
15
15
16
16
/// A node that represents an input or output of a task (often, but not necessarily, representing the path of a file system entity). Every node has a name, even if it doesn’t have a path. If it does have a path, the name will be the same as the last path component of a path.
17
17
/// PlannedNode are AnyObject-type and all instances are interned to allow for reference equality.
0 commit comments