Skip to content
Snippets Groups Projects
Commit 9e93b649 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Remove obsolete map_negation().

parent 3dacec96
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,6 @@ class EvaluationMapper(RecursiveMapper):
def map_lookup(self, expr):
return getattr(self.rec(expr.aggregate), expr.name)
def map_negation(self, expr):
return -self.rec(expr.child)
def map_sum(self, expr):
return sum(self.rec(child) for child in expr.children)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment