(t *token.Token, line, character int)
| 416 | } |
| 417 | |
| 418 | func inToken(t *token.Token, line, character int) bool { |
| 419 | return t.Position.Line == line && t.Position.Column <= character && character <= t.Position.Column+len(t.Value) |
| 420 | } |
no outgoing calls
no test coverage detected