Class: RBS::Annotate::Annotations::Copy

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(annotation:, source:) ⇒ Copy

Returns a new instance of Copy.



54
55
56
57
# File 'lib/rbs/annotate/annotations.rb', line 54

def initialize(annotation:, source:)
  @annotation = annotation
  @source = source
end

Instance Attribute Details

#annotationObject (readonly)

Returns the value of attribute annotation.



52
53
54
# File 'lib/rbs/annotate/annotations.rb', line 52

def annotation
  @annotation
end

#sourceObject (readonly)

Returns the value of attribute source.



52
53
54
# File 'lib/rbs/annotate/annotations.rb', line 52

def source
  @source
end

Instance Method Details

#==(other) ⇒ Object Also known as: eql?



84
85
86
87
88
# File 'lib/rbs/annotate/annotations.rb', line 84

def ==(other)
  other.is_a?(Copy) &&
    other.annotation == annotation &&
    other.source == source
end

#hashObject



80
81
82
# File 'lib/rbs/annotate/annotations.rb', line 80

def hash
  self.class.hash ^ annotation.hash ^ source.hash
end

#method_nameObject



64
65
66
67
68
69
# File 'lib/rbs/annotate/annotations.rb', line 64

def method_name
  _, m = partition
  if m
    m[1]
  end
end

#partitionObject



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/rbs/annotate/annotations.rb', line 92

def partition
  case
  when match = source.match(/(?<constant_name>[^#]+)#(?<method_name>.+)/)
    [
      TypeName(match[:constant_name] || raise),
      [
        false,
        (match[:method_name] or raise).to_sym
      ]
    ]
  when match = source.match(/(?<constant_name>[^#]+)\.(?<method_name>.+)/)
    [
      TypeName(match[:constant_name] || raise),
      [
        true,
        (match[:method_name] or raise).to_sym
      ]
    ]
  else
    [
      TypeName(source),
      nil
    ]
  end
end

#singleton?Boolean

Returns:

  • (Boolean)


71
72
73
74
75
76
77
78
# File 'lib/rbs/annotate/annotations.rb', line 71

def singleton?
  _, m = partition
  if m
    m[0]
  else
    false
  end
end

#type_nameObject



59
60
61
62
# File 'lib/rbs/annotate/annotations.rb', line 59

def type_name
  name, _ = partition
  name
end