# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 265 def initialize(name,, type_params,, members,, self_types,, annotations,, location,, comment)) @name = name @type_params = type_params @self_types = self_types @members = members @annotations = annotations @location = location @comment = comment end
# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 275 def ==(other) other.is_a?(Module) && other.name == name && other.type_params == type_params && other.self_types == self_types && other.members == members end