()
| 134 | |
| 135 | impl<'op> OperatorPair<'op> { |
| 136 | fn new() -> OperatorPair<'op> { |
| 137 | return OperatorPair{ |
| 138 | ch: "illegal", // value 'illegal' used only in debugging, if then |
| 139 | op: &ILLEGAL_OPERATOR_INFO, // ILLEGAL_OPERATOR_INFO avoids using <Option> |
| 140 | }; |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | // OperatorVersions is a convenient data structure when looking to see whether the operator should be prefix, infix, or postfix. |
nothing calls this directly
no test coverage detected