Method: Tailor::Lexer#on_tstring_end
- Defined in:
- lib/tailor/lexer.rb
#on_tstring_end(token) ⇒ Object
Called when the lexer matches the end of a String.
475 476 477 478 479 480 |
# File 'lib/tailor/lexer.rb', line 475 def on_tstring_end(token) log "TSTRING_END: '#{token}'" tstring_end_changed notify_tstring_end_observers(lineno) super(token) end |