class SyntaxTree::VarRef

def initialize(value:, location:)

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

type SyntaxTree__VarRef_initialize_value = SyntaxTree::Kw | SyntaxTree::Ident | SyntaxTree::Const | SyntaxTree::IVar

def initialize: (value: SyntaxTree__VarRef_initialize_value, location: SyntaxTree::Location) -> void

This signature was generated using 45 samples from 1 application.

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