class SyntaxTree::ClassDeclaration

def initialize(constant:, superclass:, bodystmt:, location:)

def initialize(constant:, superclass:, bodystmt:, location:)
  @constant = constant
  @superclass = superclass
  @bodystmt = bodystmt
  @location = location
  @comments = []
end