Method: SyntaxTree::PinnedVarRef#initialize

Defined in:
lib/syntax_tree/node.rb

#initialize(value:, location:, comments: []) ⇒ PinnedVarRef

Returns a new instance of PinnedVarRef.



8738
8739
8740
8741
8742
# File 'lib/syntax_tree/node.rb', line 8738

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