IsMemberFunction indicates whether the overload is a member function
()
| 658 | |
| 659 | // IsMemberFunction indicates whether the overload is a member function |
| 660 | func (o *OverloadDecl) IsMemberFunction() bool { |
| 661 | if o == nil { |
| 662 | return false |
| 663 | } |
| 664 | return o.isMemberFunction |
| 665 | } |
| 666 | |
| 667 | // IsNonStrict returns whether the overload accepts errors and unknown values as arguments. |
| 668 | func (o *OverloadDecl) IsNonStrict() bool { |
no outgoing calls
no test coverage detected