| 958 | // --- CppiaFunction ---- |
| 959 | |
| 960 | CppiaFunction::CppiaFunction(CppiaModule *inCppia,bool inIsStatic,bool inIsDynamic) : |
| 961 | cppia(*inCppia), isStatic(inIsStatic), isDynamic(inIsDynamic), funExpr(0) |
| 962 | { |
| 963 | linked = false; |
| 964 | vtableSlot = -1; |
| 965 | } |
| 966 | |
| 967 | void CppiaFunction::load(CppiaStream &stream,bool inExpectBody) |
| 968 | { |
nothing calls this directly
no outgoing calls
no test coverage detected