Identifier represents an expression that identifies an entity, permission or relation
| 78 | |
| 79 | // Identifier represents an expression that identifies an entity, permission or relation |
| 80 | type Identifier struct { |
| 81 | Idents []token.Token // Idents is a slice of tokens that make up the identifier |
| 82 | } |
| 83 | |
| 84 | // expressionNode is a marker method to differentiate Expression and Statement interfaces |
| 85 | func (ls *Identifier) expressionNode() {} |
nothing calls this directly
no outgoing calls
no test coverage detected