X-Git-Url: http://nitlanguage.org diff --git a/src/parser/xss/nodes.xss b/src/parser/xss/nodes.xss index 37612ff..6d43485 100644 --- a/src/parser/xss/nodes.xss +++ b/src/parser/xss/nodes.xss @@ -62,16 +62,6 @@ redef class PNode # Visit all nodes in reverse order. # Thus, call "v.visit(e)" for each node e starting from the last child fun visit_all_reverse(v: Visitor) is abstract - - # Debug method: output a message prefixed with the location. - fun printl(str: String) - do - if location == null then - print("???: {str}\n") - else - print("{location}: {str}\n") - end - end end redef class Token