From db35494bf7303c38e5571b25935d7c7d2d1f189e Mon Sep 17 00:00:00 2001 From: back2dos Date: Thu, 27 Jun 2013 13:46:23 +0200 Subject: [PATCH] Use right package. --- src/tink/macro/Printer.hx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tink/macro/Printer.hx b/src/tink/macro/Printer.hx index 5362a9e..4f26b79 100644 --- a/src/tink/macro/Printer.hx +++ b/src/tink/macro/Printer.hx @@ -1,9 +1,10 @@ -package tink.macro.tools; +package tink.macro; import haxe.macro.Context; import haxe.macro.Expr; + using Lambda; -using tink.macro.tools.ExprTools; +using tink.macro.Exprs; class Printer { static var binops = '+,*,/,-,=,==,!=,>,>=,<,<=,&,|,^,&&,||,<<,>>,>>>,%,NONE,...,=>'.split(',');