Skip to content

Commit

Permalink
Too much C on the brain
Browse files Browse the repository at this point in the history
  • Loading branch information
ESultanik committed Nov 8, 2021
1 parent 0fcd3b0 commit b038208
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions polytracker/tracing.py
Original file line number Diff line number Diff line change
Expand Up @@ -1128,9 +1128,9 @@ def taints(self, labels: Iterable[TaintForestNode]) -> Taints:
taints.add(self.file_offset(node))
else:
parent1, parent2 = node.parent_one, node.parent_two
// a node will always have either zero or two parents.
// labels that are reused will reuse their associated nodes.
// all other nodes are unions.
# a node will always have either zero or two parents.
# labels that are reused will reuse their associated nodes.
# all other nodes are unions.
assert parent1 is not None and parent2 is not None
if parent1 not in history:
history.add(parent1)
Expand Down

0 comments on commit b038208

Please sign in to comment.