Class: SyntaxTree::Parser::Semicolon
- Inherits:
-
Object
- Object
- SyntaxTree::Parser::Semicolon
- Defined in:
- lib/syntax_tree/parser.rb
Overview
Semicolons are tokens that get added to the token list but never get attached to the AST. Because of this they only need to track their associated location so they can be used for computing bounds.
Instance Attribute Summary collapse
-
#location ⇒ Object
readonly
Returns the value of attribute location.
Instance Method Summary collapse
-
#initialize(location) ⇒ Semicolon
constructor
A new instance of Semicolon.
Constructor Details
#initialize(location) ⇒ Semicolon
Returns a new instance of Semicolon.
3374 3375 3376 |
# File 'lib/syntax_tree/parser.rb', line 3374 def initialize(location) @location = location end |
Instance Attribute Details
#location ⇒ Object (readonly)
Returns the value of attribute location.
3372 3373 3374 |
# File 'lib/syntax_tree/parser.rb', line 3372 def location @location end |