| 268 | |
| 269 | |
| 270 | void CppiaVar::link(CppiaModule &inModule) |
| 271 | { |
| 272 | if (dynamicFunction) |
| 273 | dynamicFunction->link(); |
| 274 | type = inModule.types[typeId]; |
| 275 | exprType = typeId==0 ? etObject : type->expressionType; |
| 276 | name = inModule.strings[nameId]; |
| 277 | |
| 278 | if (init) |
| 279 | init = init->link(inModule); |
| 280 | } |
| 281 | |
| 282 | CppiaVar::Access CppiaVar::getAccess(CppiaStream &stream) |
| 283 | { |
nothing calls this directly
no test coverage detected