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

Method is_static

codegraph-kernel/src/python.rs:311–318  ·  view source on GitHub ↗

pythonExtractor.isStatic: preceding decorator mentioning `staticmethod`.

(&self, node: Node)

Source from the content-addressed store, hash-verified

309
310 /// pythonExtractor.isStatic: preceding decorator mentioning `staticmethod`.
311 fn is_static(&self, node: Node) -> bool {
312 if let Some(prev) = node.prev_named_sibling() {
313 if prev.kind() == "decorator" {
314 return self.text(prev).contains("staticmethod");
315 }
316 }
317 false
318 }
319
320 // --- visitNode ------------------------------------------------------------
321

Callers 2

extract_functionMethod · 0.45
extract_methodMethod · 0.45

Calls 1

textMethod · 0.45

Tested by

no test coverage detected