Class: SyntaxTree::BraceBlock

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

Overview

BraceBlock represents passing a block to a method call using the { } operators.

method { |variable| variable + 1 }

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(lbrace:, block_var:, statements:, location:, comments: []) ⇒ BraceBlock

Returns a new instance of BraceBlock.



2110
2111
2112
2113
2114
2115
2116
# File 'lib/syntax_tree/node.rb', line 2110

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

Instance Attribute Details

#block_varObject (readonly)

nil | BlockVar

the optional set of parameters to the block



2102
2103
2104
# File 'lib/syntax_tree/node.rb', line 2102

def block_var
  @block_var
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



2108
2109
2110
# File 'lib/syntax_tree/node.rb', line 2108

def comments
  @comments
end

#lbraceObject (readonly)

LBrace

the left brace that opens this block



2099
2100
2101
# File 'lib/syntax_tree/node.rb', line 2099

def lbrace
  @lbrace
end

#statementsObject (readonly)

Statements

the list of expressions to evaluate within the block



2105
2106
2107
# File 'lib/syntax_tree/node.rb', line 2105

def statements
  @statements
end

Instance Method Details

#accept(visitor) ⇒ Object



2118
2119
2120
# File 'lib/syntax_tree/node.rb', line 2118

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

#child_nodesObject Also known as: deconstruct



2122
2123
2124
# File 'lib/syntax_tree/node.rb', line 2122

def child_nodes
  [lbrace, block_var, statements]
end

#deconstruct_keys(_keys) ⇒ Object



2128
2129
2130
2131
2132
2133
2134
2135
2136
# File 'lib/syntax_tree/node.rb', line 2128

def deconstruct_keys(_keys)
  {
    lbrace: lbrace,
    block_var: block_var,
    statements: statements,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



2138
2139
2140
# File 'lib/syntax_tree/node.rb', line 2138

def format(q)
  BlockFormatter.new(self, lbrace, "}", statements).format(q)
end