Class: Yass::Declarations::ContainerType

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

Constant Summary collapse

RUBY_METHODS =
%i(inline_size? kind normal? scroll_state? size? values).freeze

Instance Method Summary collapse

Methods included from Node

#to_h

Instance Method Details

#accept(visitor) ⇒ Object



3098
3099
3100
# File 'lib/yass/declarations.rb', line 3098

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

#kindObject



3102
3103
3104
# File 'lib/yass/declarations.rb', line 3102

def kind
  :container_type
end