class RBS::AST::Ruby::Annotations::SkipAnnotation
@rbs skip -- comment annotation in leading comments
Attributes
comment_location
[R]
Location?
skip_location
[R]
Location
Public Class Methods
(location: Location, prefix_location: Location, skip_location: Location, comment_location: Location?) → void
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/ast/ruby/annotations.rb, line 144 def initialize(location:, prefix_location:, skip_location:, comment_location:) super(location, prefix_location) @skip_location = skip_location @comment_location = comment_location end
Calls superclass method
RBS::AST::Ruby::Annotations::Base::new
Public Instance Methods
() → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/lib/rbs/ast/ruby/annotations.rb, line 150 def type_fingerprint "annots/skip" end