class SyntaxTree::Parser

def on_const_path_ref(parent, constant)

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

def on_const_path_ref: (SyntaxTree::VarRef parent, SyntaxTree::Const constant) -> untyped

This signature was generated using 3 samples from 1 application.

on_const_path_ref: (untyped parent, Const constant) -> ConstPathRef
:call-seq:
def on_const_path_ref(parent, constant)
  ConstPathRef.new(
    parent: parent,
    constant: constant,
    location: parent.location.to(constant.location)
  )
end