| 3089 | CppiaExpr *func; |
| 3090 | |
| 3091 | Call(CppiaStream &stream) |
| 3092 | { |
| 3093 | int argCount = stream.getInt(); |
| 3094 | func = createCppiaExpr(stream); |
| 3095 | ReadExpressions(args,stream,argCount); |
| 3096 | } |
| 3097 | |
| 3098 | Call( CppiaExpr *inSrc, int inNameId, CppiaExpr *inObject, Expressions &inArgs ) : |
| 3099 | CppiaDynamicExpr(inSrc) |
nothing calls this directly
no test coverage detected