remove puts

This commit is contained in:
Torsten Ruger 2015-09-19 16:25:42 +03:00
parent 9aa27d491d
commit dab32bc307
1 changed files with 2 additions and 2 deletions

View File

@ -9,12 +9,12 @@ AST::Node.class_eval do
puts self.inspect
children.each do |child|
if child.is_a?(AST::Node)
puts child.type
#puts child.type
if (child.type == name)
return child.children
end
else
puts child.class
#puts child.class
end
end
nil