Class: SyntaxTree::Else

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

Else represents the end of an if, unless, or case chain.

if variable
else
end

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#pretty_print, #to_json

Constructor Details

#initialize(keyword:, statements:, location:, comments: []) ⇒ Else

Returns a new instance of Else.



3945
3946
3947
3948
3949
3950
# File 'lib/syntax_tree/node.rb', line 3945

def initialize(keyword:, statements:, location:, comments: [])
  @keyword = keyword
  @statements = statements
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



3943
3944
3945
# File 'lib/syntax_tree/node.rb', line 3943

def comments
  @comments
end

#keywordObject (readonly)

Kw

the else keyword



3937
3938
3939
# File 'lib/syntax_tree/node.rb', line 3937

def keyword
  @keyword
end

#statementsObject (readonly)

Statements

the expressions to be executed



3940
3941
3942
# File 'lib/syntax_tree/node.rb', line 3940

def statements
  @statements
end

Instance Method Details

#accept(visitor) ⇒ Object



3952
3953
3954
# File 'lib/syntax_tree/node.rb', line 3952

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

#child_nodesObject Also known as: deconstruct



3956
3957
3958
# File 'lib/syntax_tree/node.rb', line 3956

def child_nodes
  [keyword, statements]
end

#deconstruct_keys(keys) ⇒ Object



3962
3963
3964
3965
3966
3967
3968
3969
# File 'lib/syntax_tree/node.rb', line 3962

def deconstruct_keys(keys)
  {
    keyword: keyword,
    statements: statements,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
# File 'lib/syntax_tree/node.rb', line 3971

def format(q)
  q.group do
    q.format(keyword)

    unless statements.empty?
      q.indent do
        q.breakable(force: true)
        q.format(statements)
      end
    end
  end
end