class SyntaxTree::Parser

def on_label(value)

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

def on_label: (String value) -> untyped

This signature was generated using 1 sample from 1 application.

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