| 220 | CppiaExpr *createStaticAccess(CppiaExpr *inSrc, FieldStorage inType, void *inPtr); |
| 221 | |
| 222 | static void ReadExpressions(Expressions &outExpressions, CppiaStream &stream,int inN=-1) |
| 223 | { |
| 224 | int count = inN>=0 ? inN : stream.getInt(); |
| 225 | outExpressions.resize(count); |
| 226 | |
| 227 | for(int i=0;i<count;i++) |
| 228 | outExpressions[i] = createCppiaExpr(stream); |
| 229 | } |
| 230 | |
| 231 | |
| 232 |
no test coverage detected