OutputCount returns the number of outputs this bound method has
()
| 33 | |
| 34 | // OutputCount returns the number of outputs this bound method has |
| 35 | func (b *BoundMethod) OutputCount() int { |
| 36 | return len(b.Outputs) |
| 37 | } |
| 38 | |
| 39 | // ParseArgs method converts the input json into the types expected by the method |
| 40 | func (b *BoundMethod) ParseArgs(args []json.RawMessage) ([]interface{}, error) { |
no outgoing calls
no test coverage detected