class SyntaxTree::Command

def initialize(message:, arguments:, block:, location:)

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

def initialize: (message: SyntaxTree::Ident, arguments: SyntaxTree::Args, block: nil, location: SyntaxTree::Location) -> void

This signature was generated using 2 samples from 1 application.

def initialize(message:, arguments:, block:, location:)
  @message = message
  @arguments = arguments
  @block = block
  @location = location
  @comments = []
end