OperandTrait returns the trait mask of the first operand to the overload call, e.g. `traits.Indexer`
()
| 683 | // OperandTrait returns the trait mask of the first operand to the overload call, e.g. |
| 684 | // `traits.Indexer` |
| 685 | func (o *OverloadDecl) OperandTrait() int { |
| 686 | if o == nil { |
| 687 | return 0 |
| 688 | } |
| 689 | return o.operandTrait |
| 690 | } |
| 691 | |
| 692 | // ResultType indicates the output type from calling the function. |
| 693 | func (o *OverloadDecl) ResultType() *types.Type { |
no outgoing calls
no test coverage detected