HelpMessage describes a contextual help message.
| 27 | |
| 28 | // HelpMessage describes a contextual help message. |
| 29 | type HelpMessage struct { |
| 30 | // Command is set if the message is about a statement. |
| 31 | Command string |
| 32 | // Function is set if the message is about a built-in function. |
| 33 | Function string |
| 34 | |
| 35 | // HelpMessageBody contains the details of the message. |
| 36 | HelpMessageBody |
| 37 | } |
| 38 | |
| 39 | // helpHintPrefix is the special prefix on a hint payload that is |
| 40 | // recognized by the CLI code. |
nothing calls this directly
no outgoing calls
no test coverage detected