isWhitespace returns true if c is a whitespace character
(c byte)
| 583 | |
| 584 | // isWhitespace returns true if c is a whitespace character |
| 585 | func isWhitespace(c byte) bool { |
| 586 | return c == ' ' || c == '\t' || c == '\n' || c == '\r' |
| 587 | } |
| 588 | |
| 589 | // handleHover provides hover information for SQL keywords. |
| 590 | // |
no outgoing calls
no test coverage detected