IsDeclarationDisabled indicates that the function implementation should be added to the dispatcher, but the declaration should not be exposed for use in expressions.
()
| 128 | // IsDeclarationDisabled indicates that the function implementation should be added to the dispatcher, but the |
| 129 | // declaration should not be exposed for use in expressions. |
| 130 | func (f *FunctionDecl) IsDeclarationDisabled() bool { |
| 131 | if f == nil { |
| 132 | return true |
| 133 | } |
| 134 | return f.state == declarationDisabled |
| 135 | } |
| 136 | |
| 137 | // Merge combines an existing function declaration with another. |
| 138 | // |
no outgoing calls