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.



2075
2076
2077
2078
2079
2080
2081
# File 'lib/syntax_tree/node.rb', line 2075

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



2067
2068
2069
# File 'lib/syntax_tree/node.rb', line 2067

def block_var
  @block_var
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



2073
2074
2075
# File 'lib/syntax_tree/node.rb', line 2073

def comments
  @comments
end

#lbraceObject (readonly)

LBrace

the left brace that opens this block



2064
2065
2066
# File 'lib/syntax_tree/node.rb', line 2064

def lbrace
  @lbrace
end

#statementsObject (readonly)

Statements

the list of expressions to evaluate within the block



2070
2071
2072
# File 'lib/syntax_tree/node.rb', line 2070

def statements
  @statements
end

Instance Method Details

#accept(visitor) ⇒ Object



2083
2084
2085
# File 'lib/syntax_tree/node.rb', line 2083

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

#child_nodesObject Also known as: deconstruct



2087
2088
2089
# File 'lib/syntax_tree/node.rb', line 2087

def child_nodes
  [lbrace, block_var, statements]
end

#deconstruct_keys(_keys) ⇒ Object



2093
2094
2095
2096
2097
2098
2099
2100
2101
# File 'lib/syntax_tree/node.rb', line 2093

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

#format(q) ⇒ Object



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

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