class SyntaxTree::Unary

def initialize(operator:, statement:, location:)

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

def initialize: (operator: String, statement: SyntaxTree::Int, location: SyntaxTree::Location) -> void

This signature was generated using 1 sample from 1 application.

def initialize(operator:, statement:, location:)
  @operator = operator
  @statement = statement
  @location = location
  @comments = []
end