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