Class: SyntaxTree::BlockArg

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

Overview

BlockArg represents declaring a block parameter on a method definition.

def method(&block); 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(name:, location:, comments: []) ⇒ BlockArg

Returns a new instance of BlockArg.



1742
1743
1744
1745
1746
# File 'lib/syntax_tree/node.rb', line 1742

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



1740
1741
1742
# File 'lib/syntax_tree/node.rb', line 1740

def comments
  @comments
end

#nameObject (readonly)

nil | Ident

the name of the block argument



1737
1738
1739
# File 'lib/syntax_tree/node.rb', line 1737

def name
  @name
end

Instance Method Details

#accept(visitor) ⇒ Object



1748
1749
1750
# File 'lib/syntax_tree/node.rb', line 1748

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

#child_nodesObject Also known as: deconstruct



1752
1753
1754
# File 'lib/syntax_tree/node.rb', line 1752

def child_nodes
  [name]
end

#deconstruct_keys(_keys) ⇒ Object



1758
1759
1760
# File 'lib/syntax_tree/node.rb', line 1758

def deconstruct_keys(_keys)
  { name: name, location: location, comments: comments }
end

#format(q) ⇒ Object



1762
1763
1764
1765
# File 'lib/syntax_tree/node.rb', line 1762

def format(q)
  q.text("&")
  q.format(name) if name
end