class SyntaxTree::Parser

def on_fcall(value)

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

def on_fcall: (SyntaxTree::Ident value) -> untyped

This signature was generated using 7 samples from 1 application.

on_fcall: ((Const | Ident) value) -> CallNode
:call-seq:
def on_fcall(value)
  CallNode.new(
    receiver: nil,
    operator: nil,
    message: value,
    arguments: nil,
    location: value.location
  )
end