| 16839 | |
| 16840 | |
| 16841 | ToggleValueType TokenToToggleValue(ExprTokenType &aToken) |
| 16842 | { |
| 16843 | if (TokenIsNumeric(aToken)) |
| 16844 | switch (TokenToInt64(aToken)) // Reserve other values for potential future use by requiring exact match. |
| 16845 | { |
| 16846 | case 1: return TOGGLED_ON; |
| 16847 | case 0: return TOGGLED_OFF; |
| 16848 | case -1: return TOGGLE; |
| 16849 | } |
| 16850 | return TOGGLE_INVALID; |
| 16851 | } |
| 16852 | |
| 16853 | |
| 16854 |
nothing calls this directly
no test coverage detected