| 1812 | } |
| 1813 | |
| 1814 | void fxEchoPathLine(txMachine* the, txString thePath, txInteger theLine) |
| 1815 | { |
| 1816 | if (thePath && theLine) { |
| 1817 | fxEcho(the, " path=\""); |
| 1818 | fxEchoString(the, thePath); |
| 1819 | fxEcho(the, "\""); |
| 1820 | fxEcho(the, " line=\""); |
| 1821 | fxEchoInteger(the, theLine); |
| 1822 | fxEcho(the, "\""); |
| 1823 | } |
| 1824 | } |
| 1825 | |
| 1826 | void fxEchoProperty(txMachine* the, txSlot* theProperty, txInspectorNameList* theList, txString thePrefix, txIndex theIndex, txString theSuffix) |
| 1827 | { |
no test coverage detected