RBS::AST::Declarations::Base
# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 429 def initialize(name,, type,, location,, comment)) @name = name @type = type @location = location @comment = comment end
# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 436 def ==(other) other.is_a?(Global) && other.name == name && other.type == type end
# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 444 def hash self.class.hash ^ name.hash ^ type.hash end
# File rbs-1.0.4/lib/rbs/ast/declarations.rb, line 448 def to_json(*a) { declaration: :global, name: name, type: type, location: location, comment: comment }.to_json(*a) end
This page was generated for Ruby 3.0.1
Ruby-doc.org is provided by James Britt and Neurogami. Hack your world. Feed your head. Live curious.
Generated with Ruby-doc Rdoc Generator 0.44.2.