Name returns the function name in human-readable terms, e.g. 'contains' of 'math.least'
()
| 109 | |
| 110 | // Name returns the function name in human-readable terms, e.g. 'contains' of 'math.least' |
| 111 | func (f *FunctionDecl) Name() string { |
| 112 | if f == nil { |
| 113 | return "" |
| 114 | } |
| 115 | return f.name |
| 116 | } |
| 117 | |
| 118 | // Description provides an overview of the function's purpose. |
| 119 | // |
no outgoing calls