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

Method is_static

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

pythonExtractor.isStatic: preceding decorator mentioning `staticmethod`.

(&self, node: Node)

Source from the content-addressed store, hash-verified

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

Callers 2

extract_functionMethod · 0.45
extract_methodMethod · 0.45

Calls 1

textMethod · 0.45

Tested by

no test coverage detected