Class: SyntaxTree::DoBlock

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

Overview

DoBlock represents passing a block to a method call using the do and end keywords.

method do |value|
end

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(keyword:, block_var:, bodystmt:, location:, comments: []) ⇒ DoBlock

Returns a new instance of DoBlock.



3667
3668
3669
3670
3671
3672
3673
# File 'lib/syntax_tree/node.rb', line 3667

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

Instance Attribute Details

#block_varObject (readonly)

nil | BlockVar

the optional variable declaration within this block



3659
3660
3661
# File 'lib/syntax_tree/node.rb', line 3659

def block_var
  @block_var
end

#bodystmtObject (readonly)

BodyStmt

the expressions to be executed within this block



3662
3663
3664
# File 'lib/syntax_tree/node.rb', line 3662

def bodystmt
  @bodystmt
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



3665
3666
3667
# File 'lib/syntax_tree/node.rb', line 3665

def comments
  @comments
end

#keywordObject (readonly)

Kw

the do keyword that opens this block



3656
3657
3658
# File 'lib/syntax_tree/node.rb', line 3656

def keyword
  @keyword
end

Instance Method Details

#accept(visitor) ⇒ Object



3675
3676
3677
# File 'lib/syntax_tree/node.rb', line 3675

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

#child_nodesObject Also known as: deconstruct



3679
3680
3681
# File 'lib/syntax_tree/node.rb', line 3679

def child_nodes
  [keyword, block_var, bodystmt]
end

#deconstruct_keys(_keys) ⇒ Object



3685
3686
3687
3688
3689
3690
3691
3692
3693
# File 'lib/syntax_tree/node.rb', line 3685

def deconstruct_keys(_keys)
  {
    keyword: keyword,
    block_var: block_var,
    bodystmt: bodystmt,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



3695
3696
3697
# File 'lib/syntax_tree/node.rb', line 3695

def format(q)
  BlockFormatter.new(self, keyword, "end", bodystmt).format(q)
end