class SyntaxTree::Parser

def on_tstring_end(value)

Experimental RBS support (using type sampling data from the type_fusion project).

def on_tstring_end: (String value) -> untyped

This signature was generated using 12 samples from 1 application.

on_tstring_end: (String value) -> TStringEnd
:call-seq:
def on_tstring_end(value)
  node =
    TStringEnd.new(
      value: value,
      location:
        Location.token(
          line: lineno,
          char: char_pos,
          column: current_column,
          size: value.size
        )
    )
  tokens << node
  node
end