BooleanExpression - TokenType of Expression that represent single boolean value Example: TRUE
| 75 | // Example: |
| 76 | // TRUE |
| 77 | type BooleanExpression struct { |
| 78 | Boolean token.Token // example: token.TRUE |
| 79 | } |
| 80 | |
| 81 | func (ls BooleanExpression) GetIdentifiers() []Identifier { |
| 82 | var identifiers []Identifier |
nothing calls this directly
no outgoing calls
no test coverage detected