(node *Node)
| 1739 | } |
| 1740 | |
| 1741 | func IsPartOfTypeQuery(node *Node) bool { |
| 1742 | for node.Kind == KindQualifiedName || node.Kind == KindIdentifier { |
| 1743 | node = node.Parent |
| 1744 | } |
| 1745 | return node.Kind == KindTypeQuery |
| 1746 | } |
| 1747 | |
| 1748 | /** |
| 1749 | * This function returns true if the this node's root declaration is a parameter. |
no outgoing calls
no test coverage detected