From dab32bc307105b5e3eddbd166f3023bc65bd8d2a Mon Sep 17 00:00:00 2001 From: Torsten Ruger Date: Sat, 19 Sep 2015 16:25:42 +0300 Subject: [PATCH] remove puts --- lib/salama-reader.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/salama-reader.rb b/lib/salama-reader.rb index 64ab805..d368e6d 100644 --- a/lib/salama-reader.rb +++ b/lib/salama-reader.rb @@ -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