class SyntaxTree::Parser

def on_tstring_content(value)

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

def on_tstring_content: (String value) -> untyped

This signature was generated using 21 samples from 1 application.

on_tstring_content: (String value) -> TStringContent
:call-seq:
def on_tstring_content(value)
  TStringContent.new(
    value: value,
    location:
      Location.token(
        line: lineno,
        char: char_pos,
        column: current_column,
        size: value.size
      )
  )
end