class SyntaxTree::Parser

def on_const(value)

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

def on_const: (String value) -> untyped

This signature was generated using 14 samples from 1 application.

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