module RBS::AST::Members::Attribute

def initialize(name:, type:, ivar_name:, kind:, annotations:, location:, comment:, visibility: nil)

def initialize(name:, type:, ivar_name:, kind:, annotations:, location:, comment:, visibility: nil)
  @name = name
  @type = type
  @ivar_name = ivar_name
  @annotations = annotations
  @location = location
  @comment = comment
  @kind = kind
  @visibility = visibility
end