| 1146 | TypeData *typeData; |
| 1147 | |
| 1148 | CastExpr(CppiaStream &stream,CastOp inOp) |
| 1149 | { |
| 1150 | op = inOp; |
| 1151 | typeId = 0; |
| 1152 | typeData = 0; |
| 1153 | if (op==castDataArray || op==castInstance) |
| 1154 | typeId = stream.getInt(); |
| 1155 | |
| 1156 | value = createCppiaExpr(stream); |
| 1157 | } |
| 1158 | ExprType getType() HXCPP_OVERRIDE { |
| 1159 | return op==castInt || op==castBool ? etInt : |
| 1160 | op==castFloat ? etFloat : |
nothing calls this directly
no test coverage detected