logo
pub trait TypeResolutionContext {
    fn property_ty(&self, _: &PropertyReference) -> &Type;

    fn arg_type(&self, _index: usize) -> &Type { ... }
}

Required methods

Provided methods

Implementors