Identifier - Represent Token with string value that is equal to either column or table name
| 56 | |
| 57 | // Identifier - Represent Token with string value that is equal to either column or table name |
| 58 | type Identifier struct { |
| 59 | Token token.Token // the token.IDENT token |
| 60 | } |
| 61 | |
| 62 | func (ls Identifier) IsIdentifier() bool { return true } |
| 63 | func (ls Identifier) GetToken() token.Token { return ls.Token } |
nothing calls this directly
no outgoing calls
no test coverage detected