class SyntaxTree::Reflection::Attribute

This class represents one of the attributes on a node in the tree.

def initialize(name, comment)

def initialize(name, comment)
  @name = name
  @comment = comment
  @type = Type.parse(comment)
end