class SyntaxTree::Parser

def on_ident(value)

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

def on_ident: (String value) -> untyped

This signature was generated using 69 samples from 1 application.

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