class SyntaxTree::Parser

def on_lbrace(value)

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

def on_lbrace: (String value) -> untyped

This signature was generated using 1 sample from 1 application.

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