def children()

in utils/trees.py [0:0]


    def children(self):
        '''
        Get the children for the root calling this method

        :return: (List) Return a list of ExpressSemanticTree objects that are children of `self` 
        '''
        return [ExpressSemanticTree(tree_rep=c) for c in self.tree_rep.children]