class SyntaxTree::Parser::Semicolon
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.
Attributes
Public Class Methods
Source
# File lib/syntax_tree/parser.rb, line 3379 def initialize(location) @location = location end