Skip to content

Commit

Permalink
Removed unnecessary print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bok- committed Jan 13, 2021
1 parent 669afce commit f7f30d1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Sources/TreeSitter/Node.swift
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ public struct NodeCollection: Sequence, IteratorProtocol {

public subscript(position: Int) -> Node {
let next = self.namedOnly ? ts_node_named_child(self.parent.rawValue, UInt32(position)) : ts_node_child(self.parent.rawValue, UInt32(position))
print("Position: \(position)")
return Node(rawValue: next)
}

Expand Down

0 comments on commit f7f30d1

Please sign in to comment.