Class: Yass::Declarations::Content::Normal

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



3125
3126
3127
# File 'lib/yass/declarations.rb', line 3125

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

#kindObject



3129
3130
3131
# File 'lib/yass/declarations.rb', line 3129

def kind
  :normal
end