(node: SyntaxNode, fieldName: string)
| 40 | * Find a child node by field name |
| 41 | */ |
| 42 | export function getChildByField(node: SyntaxNode, fieldName: string): SyntaxNode | null { |
| 43 | return node.childForFieldName(fieldName); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Node types that *wrap* a declaration so a leading comment is a sibling of the |
no outgoing calls
no test coverage detected