| 818 | } |
| 819 | |
| 820 | xsBooleanValue fxFindString(xsMachine* the, xsSlot* slot, xsIdentifier id, xsStringValue* value) |
| 821 | { |
| 822 | xsBooleanValue result; |
| 823 | xsOverflow(-1); |
| 824 | fxPush(*slot); |
| 825 | fxGetID(the, id); |
| 826 | if (fxTypeOf(the, the->stack) != xsUndefinedType) { |
| 827 | *value = fxToString(the, the->stack); |
| 828 | result = 1; |
| 829 | } |
| 830 | else |
| 831 | result = 0; |
| 832 | the->stack++; |
| 833 | return result; |
| 834 | } |
| 835 | |
| 836 | xsBooleanValue fxFindResult(xsMachine* the, xsSlot* slot, xsIdentifier id) |
| 837 | { |
nothing calls this directly
no test coverage detected