MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / line_of

Method line_of

codegraph-kernel/src/ruby.rs:210–212  ·  view source on GitHub ↗
(&self, node: Node)

Source from the content-addressed store, hash-verified

208 &self.src[node.byte_range()]
209 }
210 fn line_of(&self, node: Node) -> u32 {
211 node.start_position().row as u32 + 1
212 }
213 fn col_of(&self, node: Node) -> u32 {
214 util::col16(self.src, &self.line_starts, node.start_position().row, node.start_byte())
215 }

Callers 4

push_ref_atMethod · 0.45
create_nodeMethod · 0.45
try_visit_hookMethod · 0.45
extract_callMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected