Class: RBS::TypeAliasRegularity::Diagnostic

Inherits:
Object
  • Object
show all
Defined in:
lib/rbs/type_alias_regularity.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(type_name:, nonregular_type:) ⇒ Diagnostic

Returns a new instance of Diagnostic.



8
9
10
11
# File 'lib/rbs/type_alias_regularity.rb', line 8

def initialize(type_name:, nonregular_type:)
  @type_name = type_name
  @nonregular_type = nonregular_type
end

Instance Attribute Details

#nonregular_typeObject (readonly)

Returns the value of attribute nonregular_type.



6
7
8
# File 'lib/rbs/type_alias_regularity.rb', line 6

def nonregular_type
  @nonregular_type
end

#type_nameObject (readonly)

Returns the value of attribute type_name.



6
7
8
# File 'lib/rbs/type_alias_regularity.rb', line 6

def type_name
  @type_name
end