(tok token, lit string)
| 190 | } |
| 191 | |
| 192 | func tokstr(tok token, lit string) string { |
| 193 | if lit != "" { |
| 194 | return lit |
| 195 | } |
| 196 | return tok.String() |
| 197 | } |
| 198 | |
| 199 | // lookup returns the token associated with a given string. |
| 200 | func lookup(id string) (token, string) { |
no test coverage detected