Anonymitifier - Represent Token with string value that is equal to simple value that is put into columns
| 64 | |
| 65 | // Anonymitifier - Represent Token with string value that is equal to simple value that is put into columns |
| 66 | type Anonymitifier struct { |
| 67 | Token token.Token // the token.IDENT token |
| 68 | } |
| 69 | |
| 70 | func (ls Anonymitifier) IsIdentifier() bool { return false } |
| 71 | func (ls Anonymitifier) GetToken() token.Token { return ls.Token } |
nothing calls this directly
no outgoing calls
no test coverage detected