# File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 274
def initialize(name,, type_params,, type,, annotations,, location,, comment))
@name = name
@type_params = type_params
@type = type
@annotations = annotations
@location = location
@comment = comment
end
# File rbs-2.1.0/lib/rbs/ast/declarations.rb, line 283
def ==(other)
other.is_a?(Alias) &&
other.name == name &&
other.type_params == type_params &&
other.type == type
end