(tokenType int)
| 73 | } |
| 74 | |
| 75 | func isNoSeparatorRequired(tokenType int) bool { |
| 76 | switch tokenType { |
| 77 | case '.', '(', ')', ',', ';', '=', '<', '>', '+', '-', '*', '/', '%', '^', '~', '!', '@': |
| 78 | return true |
| 79 | } |
| 80 | return false |
| 81 | } |
| 82 | |
| 83 | type Completer struct { |
| 84 | ctx context.Context |