nitc :: CppCallContext :: defaultinit
private class CppCallContext
super CallContext
redef fun name_mtype(mtype)
do
if mtype isa MClassType then
var ftype = mtype.mclass.ftype
if ftype isa ForeignCppType then
return ftype.cpp_type
end
end
return mtype.cname
end
end
src/ffi/cpp.nit:216,1--230,3