Class: RBS::Annotate::Annotations::Skip

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(annotation:, skip_children:) ⇒ Skip

Returns a new instance of Skip.



9
10
11
12
# File 'lib/rbs/annotate/annotations.rb', line 9

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

Instance Attribute Details

#annotationObject (readonly)

Returns the value of attribute annotation.



7
8
9
# File 'lib/rbs/annotate/annotations.rb', line 7

def annotation
  @annotation
end

#skip_childrenObject (readonly)

Returns the value of attribute skip_children.



7
8
9
# File 'lib/rbs/annotate/annotations.rb', line 7

def skip_children
  @skip_children
end

Instance Method Details

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



18
19
20
21
22
# File 'lib/rbs/annotate/annotations.rb', line 18

def ==(other)
  other.is_a?(Skip) &&
    other.skip_children == skip_children &&
    other.annotation == annotation
end

#hashObject



14
15
16
# File 'lib/rbs/annotate/annotations.rb', line 14

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