IsMemberFunction indicates whether the overload is a member function
()
| 702 | |
| 703 | // IsMemberFunction indicates whether the overload is a member function |
| 704 | func (o *OverloadDecl) IsMemberFunction() bool { |
| 705 | if o == nil { |
| 706 | return false |
| 707 | } |
| 708 | return o.isMemberFunction |
| 709 | } |
| 710 | |
| 711 | // IsNonStrict returns whether the overload accepts errors and unknown values as arguments. |
| 712 | func (o *OverloadDecl) IsNonStrict() bool { |
no outgoing calls
no test coverage detected