| 55 | } |
| 56 | |
| 57 | type Token struct { |
| 58 | Kind string |
| 59 | Hash string |
| 60 | } |
| 61 | |
| 62 | func (t Token) IsNode() bool { return t.Kind == nodeKind } |
| 63 | func (t Token) Key() interface{} { return t } |
nothing calls this directly
no outgoing calls
no test coverage detected