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

Method is_static

codegraph-kernel/src/csharp.rs:435–439  ·  view source on GitHub ↗
(&self, node: Node)

Source from the content-addressed store, hash-verified

433 }
434
435 fn is_static(&self, node: Node) -> bool {
436 (0..node.child_count())
437 .filter_map(|i| node.child(i))
438 .any(|c| c.kind() == "modifier" && self.text(c) == "static")
439 }
440
441 fn is_async(&self, node: Node) -> bool {
442 (0..node.child_count())

Callers 4

extract_propertyMethod · 0.45
extract_fieldMethod · 0.45
extract_methodMethod · 0.45
extract_functionMethod · 0.45

Calls 1

textMethod · 0.45

Tested by

no test coverage detected