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

Method is_const

codegraph-kernel/src/java.rs:436–446  ·  view source on GitHub ↗

javaExtractor.isConst: `static final` field → constant.

(&self, node: Node)

Source from the content-addressed store, hash-verified

434
435 /// javaExtractor.isConst: `static final` field → constant.
436 fn is_const(&self, node: Node) -> bool {
437 for i in 0..node.child_count() {
438 if let Some(child) = node.child(i) {
439 if child.kind() == "modifiers" {
440 let text = self.text(child);
441 return word_re("static").is_match(text) && word_re("final").is_match(text);
442 }
443 }
444 }
445 false
446 }
447
448 fn signature_of(&self, node: Node) -> Option<String> {
449 let params = node.child_by_field_name("parameters")?;

Callers 2

extract_fieldMethod · 0.45
extract_variableMethod · 0.45

Calls 2

word_reFunction · 0.85
textMethod · 0.45

Tested by

no test coverage detected