Class: BELParser::Parsers::AST::Url
- Defined in:
- lib/bel_parser/parsers/ast/node.rb
Overview
AST node representing a URL.
Instance Attribute Summary
Attributes inherited from Node
#character_range, #complete, #line_number
Attributes inherited from AST::Node
Instance Method Summary collapse
-
#initialize(children = [], properties = {}) ⇒ Url
constructor
New Url AST node.
-
#string ⇒ Object
Get the url’s string.
Methods inherited from Node
#add_syntax_error, #append, #child, #children?, #complete?, #concat, #first_child, #fourth_child, #freeze, #incomplete?, #num_children, #range_end, #range_start, #second_child, #syntax_errors, #third_child, #traverse, #updated
Methods inherited from AST::Node
#==, #append, #concat, #dup, #eql?, #inspect, #to_a, #to_ast, #to_bel, #to_s, #to_sexp, #updated
Methods included from BELParser::Parsers
Constructor Details
Instance Method Details
#string ⇒ Object
Get the url’s string.
403 404 405 |
# File 'lib/bel_parser/parsers/ast/node.rb', line 403 def string children[0] end |