MCPcopy Create free account
hub / github.com/LissaGreense/GO4SQL / Identifier

Struct Identifier

ast/ast.go:58–60  ·  view source on GitHub ↗

Identifier - Represent Token with string value that is equal to either column or table name

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected