diff --git a/src/mapcss/Eval.py b/src/mapcss/Eval.py index 8a33827..f680203 100644 --- a/src/mapcss/Eval.py +++ b/src/mapcss/Eval.py @@ -27,7 +27,7 @@ class Eval(): try: self.expr = compile (s, "MapCSS expression", "eval") except: - print "Can't compile %s" % s + #print "Can't compile %s" % s self.expr = compile ("0", "MapCSS expression", "eval") @@ -42,10 +42,11 @@ class Eval(): """ for t in x: q = x - return "" + return " " tags = set([]) + a = eval(self.expr,{},{ - "tag":lambda x: tags.add(x), + "tag":lambda x: max([tags.add(x), " "]), "prop": lambda x: "", "num": lambda x: 0, "metric": fake_compute, @@ -55,6 +56,7 @@ class Eval(): "min": fake_compute, "max": fake_compute, }) + return tags @@ -149,4 +151,4 @@ if __name__ == "__main__": a = Eval(""" eval( any( metric(tag("height")), metric ( num(tag("building:levels")) * 3), metric("1m"))) """) print repr(a) print a.compute({"building:levels":"3"}) - print a.extract_tags() \ No newline at end of file + print a.extract_tags()