| 1036 | } |
| 1037 | |
| 1038 | txBoolean fxHasAll(txMachine* the, txSlot* stack, txID id, txIndex index) |
| 1039 | { |
| 1040 | txSlot* instance = fxToInstance(the, stack); |
| 1041 | txBoolean result = mxBehaviorHasProperty(the, instance, id, index); |
| 1042 | the->stack = stack; |
| 1043 | mxPop(); |
| 1044 | return result; |
| 1045 | } |
| 1046 | |
| 1047 | txBoolean fxHasAt(txMachine* the) |
| 1048 | { |
no test coverage detected