nitc :: ObjCCallContext :: defaultinit
private class ObjCCallContext
super CallContext
redef fun name_mtype(mtype)
do
if mtype isa MClassType then
var ftype = mtype.mclass.ftype
if ftype isa ForeignObjCType then
return ftype.objc_type
end
end
return mtype.cname
end
end
src/ffi/objc.nit:213,1--227,3