class Parser::AST::Node
{Parser::AST::Node} contains information about a single AST
node and its child nodes. It extends the basic [AST::Node](www.rubydoc.info/gems/ast/AST/Node) class provided by gem [ast](www.rubydoc.info/gems/ast).
@api public
@!attribute [r] location
Source map for this Node. @return [Parser::Source::Map]
Attributes
Public Instance Methods
Source
# File lib/parser/ast/node.rb, line 30 def assign_properties(properties) if (location = properties[:location]) location = location.dup if location.frozen? location.node = self @location = location end end
Assigns various properties to this AST
node. Currently only the location can be set.
@param [Hash] properties @option properties [Parser::Source::Map] :location Location information
of the node.