| 904 | } |
| 905 | |
| 906 | void fxVerifyPropertyError(txMachine* the, txSlot *list, txSlot *path, txSlot* property, txID id, txIndex index) |
| 907 | { |
| 908 | txBoolean immutable = 1; |
| 909 | if (property->kind != XS_ACCESSOR_KIND) |
| 910 | if (!(property->flag & XS_DONT_SET_FLAG)) |
| 911 | immutable = 0; |
| 912 | if (!(property->flag & XS_DONT_DELETE_FLAG)) |
| 913 | immutable = 0; |
| 914 | if (!immutable) |
| 915 | fxVerifyError(the, path, id, index, C_NULL); |
| 916 | } |
| 917 | |
| 918 | void fxVerifyQueue(txMachine* the, txSlot* list, txSlot* path, txSlot* instance, txID id, txIndex index, txString string) |
| 919 | { |
no test coverage detected