IsNonStrict returns whether the overload accepts errors and unknown values as arguments.
()
| 666 | |
| 667 | // IsNonStrict returns whether the overload accepts errors and unknown values as arguments. |
| 668 | func (o *OverloadDecl) IsNonStrict() bool { |
| 669 | if o == nil { |
| 670 | return false |
| 671 | } |
| 672 | return o.nonStrict |
| 673 | } |
| 674 | |
| 675 | // HasLateBinding returns whether the overload has a binding which is not known at compile time. |
| 676 | func (o *OverloadDecl) HasLateBinding() bool { |
no outgoing calls
no test coverage detected