OperationSize reports the number of operations that the statement will convert to.
()
| 28 | type Statement interface { |
| 29 | // OperationSize reports the number of operations that the statement will convert to. |
| 30 | OperationSize() int32 |
| 31 | // AppendOperations adds the statement to the operation slice. |
| 32 | AppendOperations(ops *[]InterpreterOperation, stack *InterpreterStack) error |
| 33 | } |
no outgoing calls
no test coverage detected