isStatic (scala.ts:123-129) — text scan, effectively always false.
(&self, node: Node<'t>)
| 423 | |
| 424 | /// isStatic (scala.ts:123-129) — text scan, effectively always false. |
| 425 | fn is_static_of(&self, node: Node<'t>) -> bool { |
| 426 | let mut cursor = node.walk(); |
| 427 | for c in node.named_children(&mut cursor) { |
| 428 | if c.kind() == "modifiers" && self.text(c).contains("static") { |
| 429 | return true; |
| 430 | } |
| 431 | } |
| 432 | false |
| 433 | } |
| 434 | |
| 435 | /// getSignature (scala.ts:110-117) — first-match-wins fields: curried |
| 436 | /// defs keep only the first list; a type_parameters node carrying field |
no test coverage detected