Class: RBS::AST::Declarations::Module
- Includes:
- MixinHelper, NestedDeclarationHelper
- Defined in:
- lib/rbs/ast/declarations.rb
Defined Under Namespace
Classes: Self
Instance Attribute Summary collapse
-
#annotations ⇒ Object
readonly
Returns the value of attribute annotations.
-
#comment ⇒ Object
readonly
Returns the value of attribute comment.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#members ⇒ Object
readonly
Returns the value of attribute members.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#self_types ⇒ Object
readonly
Returns the value of attribute self_types.
-
#type_params ⇒ Object
readonly
Returns the value of attribute type_params.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #hash ⇒ Object
-
#initialize(name:, type_params:, members:, self_types:, annotations:, location:, comment:) ⇒ Module
constructor
A new instance of Module.
- #to_json(*a) ⇒ Object
Methods included from MixinHelper
Methods included from NestedDeclarationHelper
Constructor Details
#initialize(name:, type_params:, members:, self_types:, annotations:, location:, comment:) ⇒ Module
Returns a new instance of Module.
262 263 264 265 266 267 268 269 270 |
# File 'lib/rbs/ast/declarations.rb', line 262 def initialize(name:, type_params:, members:, self_types:, annotations:, location:, comment:) @name = name @type_params = type_params @self_types = self_types @members = members @annotations = annotations @location = location @comment = comment end |
Instance Attribute Details
#annotations ⇒ Object (readonly)
Returns the value of attribute annotations.
258 259 260 |
# File 'lib/rbs/ast/declarations.rb', line 258 def annotations @annotations end |
#comment ⇒ Object (readonly)
Returns the value of attribute comment.
260 261 262 |
# File 'lib/rbs/ast/declarations.rb', line 260 def comment @comment end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
257 258 259 |
# File 'lib/rbs/ast/declarations.rb', line 257 def location @location end |
#members ⇒ Object (readonly)
Returns the value of attribute members.
256 257 258 |
# File 'lib/rbs/ast/declarations.rb', line 256 def members @members end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
254 255 256 |
# File 'lib/rbs/ast/declarations.rb', line 254 def name @name end |
#self_types ⇒ Object (readonly)
Returns the value of attribute self_types.
259 260 261 |
# File 'lib/rbs/ast/declarations.rb', line 259 def self_types @self_types end |
#type_params ⇒ Object (readonly)
Returns the value of attribute type_params.
255 256 257 |
# File 'lib/rbs/ast/declarations.rb', line 255 def type_params @type_params end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
272 273 274 275 276 277 278 |
# File 'lib/rbs/ast/declarations.rb', line 272 def ==(other) other.is_a?(Module) && other.name == name && other.type_params == type_params && other.self_types == self_types && other.members == members end |
#hash ⇒ Object
282 283 284 |
# File 'lib/rbs/ast/declarations.rb', line 282 def hash self.class.hash ^ name.hash ^ type_params.hash ^ self_types.hash ^ members.hash end |
#to_json(*a) ⇒ Object
286 287 288 289 290 291 292 293 294 295 296 297 |
# File 'lib/rbs/ast/declarations.rb', line 286 def to_json(*a) { declaration: :module, name: name, type_params: type_params, members: members, self_types: self_types, annotations: annotations, location: location, comment: comment }.to_json(*a) end |