| 1417 | |
| 1418 | |
| 1419 | ToInterface(CppiaStream &stream,bool inArray) |
| 1420 | { |
| 1421 | toTypeId = stream.getInt(); |
| 1422 | array = inArray; |
| 1423 | fromTypeId = array ? 0 : stream.getInt(); |
| 1424 | value = createCppiaExpr(stream); |
| 1425 | interfaceInfo = 0; |
| 1426 | useNative = false; |
| 1427 | cppiaVTable = 0; |
| 1428 | toType = 0; |
| 1429 | } |
| 1430 | |
| 1431 | const char *getName() HXCPP_OVERRIDE { return array ? "ToInterfaceArray" : "ToInterface"; } |
| 1432 |
nothing calls this directly
no test coverage detected