(prefix string)
| 628 | return false |
| 629 | } |
| 630 | func (t *token) hasPrefix(prefix string) bool { |
| 631 | if t == nil { |
| 632 | return false |
| 633 | } |
| 634 | return strings.HasPrefix(string(*t), prefix) |
| 635 | } |
| 636 | func (t *token) hasSuffix(suffix string) bool { |
| 637 | if t == nil { |
| 638 | return false |
no outgoing calls
no test coverage detected