Closed nrbnlulu closed 1 year ago
currently 3.2.3 implemented like this
3.2.3
def is_definition_node(node: Node) -> bool: """Check whether the given node represents a definition.""" return isinstance(node, DefinitionNode) def is_executable_definition_node(node: Node) -> bool: """Check whether the given node represents an executable definition.""" return isinstance(node, ExecutableDefinitionNode)
whops seems like this is solved in #183
currently
3.2.3
implemented like this