()
| 56 | } |
| 57 | |
| 58 | func (t token) String() string { |
| 59 | tok := string(t.t) |
| 60 | if tkAnd <= t.t && t.t <= tkString { |
| 61 | tok = tokens[t.t-firstReserved] |
| 62 | } |
| 63 | return fmt.Sprintf("{t:%s, n:%f, s:%q}", tok, t.n, t.s) |
| 64 | } |
nothing calls this directly
no outgoing calls
no test coverage detected