buildEncoderFuncs generates the encode functions for all the API classes, command parameters, command calls and state.
()
| 131 | // buildEncoderFuncs generates the encode functions for all the API classes, |
| 132 | // command parameters, command calls and state. |
| 133 | func (e *encoder) buildEncoderFuncs() { |
| 134 | e.buildClassEncodeToBufFuncs() |
| 135 | e.buildClassEncodeFuncs() |
| 136 | |
| 137 | e.buildStateEncodeFunc() |
| 138 | |
| 139 | e.buildCommandEncodeFuncs() |
| 140 | e.buildCommandCallEncodeFuncs() |
| 141 | } |
| 142 | |
| 143 | // buildClassEncodeToBufFuncs builds the encode_to_buf() method for each API |
| 144 | // class type. |
no test coverage detected