phml.utilities.locate
utilities.find
Collection of utilities centered around finding nodes in an ast.
1"""utilities.find 2 3Collection of utilities centered around finding nodes in an ast. 4""" 5 6from .find import * 7from .index import Index 8from .select import * 9 10# __all__ = [ 11# "ancestor", 12# "find", 13# "find_all", 14# "find_after", 15# "find_all_after", 16# "find_all_before", 17# "find_before", 18# "find_all_between", 19# "query", 20# "queryAll", 21# "matches", 22# "query", 23# "queryAll", 24# "matches" 25# ]