class Lox::LexicalAnalyzer::UnterminatedString
Public Class Methods
new(lexeme)
click to toggle source
Calls superclass method
# File lib/lox/lexical_analyzer/unterminated_string.rb, line 6 def initialize(lexeme) super("Unterminated string: #{lexeme}") end