server/rqlannotation.py
branchstable
changeset 9928 0d831b40fa48
parent 9518 54ead5f372bb
child 10589 7c23b7de2b8d
equal deleted inserted replaced
9925:aee99876eb10 9928:0d831b40fa48
    18 """Functions to add additional annotations on a rql syntax tree to ease later
    18 """Functions to add additional annotations on a rql syntax tree to ease later
    19 code generation.
    19 code generation.
    20 """
    20 """
    21 
    21 
    22 __docformat__ = "restructuredtext en"
    22 __docformat__ = "restructuredtext en"
    23 
       
    24 from logilab.common.compat import any
       
    25 
    23 
    26 from rql import BadRQLQuery
    24 from rql import BadRQLQuery
    27 from rql.nodes import Relation, VariableRef, Constant, Variable, Or, Exists
    25 from rql.nodes import Relation, VariableRef, Constant, Variable, Or, Exists
    28 from rql.utils import common_parent
    26 from rql.utils import common_parent
    29 
    27