OperandTrait returns the trait mask of the first operand to the overload call, e.g. `traits.Indexer`
()
| 727 | // OperandTrait returns the trait mask of the first operand to the overload call, e.g. |
| 728 | // `traits.Indexer` |
| 729 | func (o *OverloadDecl) OperandTrait() int { |
| 730 | if o == nil { |
| 731 | return 0 |
| 732 | } |
| 733 | return o.operandTrait |
| 734 | } |
| 735 | |
| 736 | // ResultType indicates the output type from calling the function. |
| 737 | func (o *OverloadDecl) ResultType() *types.Type { |
no outgoing calls
no test coverage detected