class SyntaxTree::Reflection::Node

used.
as a placeholder for collecting all of the various places that nodes are
This class represents one of our nodes in the tree. We’re going to use it

def initialize(name, comment, attributes, visitor_method)

def initialize(name, comment, attributes, visitor_method)
  @name = name
  @comment = comment
  @attributes = attributes
  @visitor_method = visitor_method
end