class SyntaxTree::Parser

def on_command(message, arguments)

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

def on_command: (SyntaxTree::Ident message, SyntaxTree::Args arguments) -> untyped

This signature was generated using 2 samples from 1 application.

on_command: ((Const | Ident) message, Args arguments) -> Command
:call-seq:
def on_command(message, arguments)
  Command.new(
    message: message,
    arguments: arguments,
    block: nil,
    location: message.location.to(arguments.location)
  )
end