module RuboCop::AST::Traversal

def on_numblock(node)

def on_numblock(node)
  children = node.children
  child = children[0]
  send(:"on_#{child.type}", child)
  return unless (child = children[2])
  send(:"on_#{child.type}", child)
end