Class: Yass::Declarations::Content::None

Inherits:
Object
  • Object
show all
Includes:
Node
Defined in:
lib/yass/declarations.rb

Constant Summary collapse

RUBY_METHODS =
%i(kind).freeze

Instance Method Summary collapse

Methods included from Node

#to_h

Instance Method Details

#accept(visitor) ⇒ Object



3139
3140
3141
# File 'lib/yass/declarations.rb', line 3139

def accept(visitor)
  visitor.visit_declaration_content_none(self)
end

#kindObject



3143
3144
3145
# File 'lib/yass/declarations.rb', line 3143

def kind
  :none
end