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