# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 177 def initialize(name,, type_params,, super_class,, members,, annotations,, location,, comment)) @name = name @type_params = type_params @super_class = super_class @members = members @annotations = annotations @location = location @comment = comment end
# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 187 def ==(other) other.is_a?(Class) && other.name == name && other.type_params == type_params && other.super_class == super_class && other.members == members end