InstanceRegisterDelegate generates a new set of tokenCount tokens on instance register, and returns the registerState InstanceState.
| 154 | |
| 155 | // InstanceRegisterDelegate generates a new set of tokenCount tokens on instance register, and returns the registerState InstanceState. |
| 156 | type InstanceRegisterDelegate struct { |
| 157 | registerState InstanceState |
| 158 | tokenCount int |
| 159 | } |
| 160 | |
| 161 | func NewInstanceRegisterDelegate(state InstanceState, tokenCount int) InstanceRegisterDelegate { |
| 162 | return InstanceRegisterDelegate{ |
nothing calls this directly
no outgoing calls
no test coverage detected