OperationExpression - TokenType of Expression that represent 2 other Expressions and conditional operation Example: TRUE OR FALSE
| 126 | // Example: |
| 127 | // TRUE OR FALSE |
| 128 | type OperationExpression struct { |
| 129 | Left Expression // another operation, condition or boolean |
| 130 | Right Expression // another operation, condition or boolean |
| 131 | Operation token.Token // example: token.AND |
| 132 | } |
| 133 | |
| 134 | func (ls OperationExpression) GetIdentifiers() []Identifier { |
| 135 | var identifiers []Identifier |
nothing calls this directly
no outgoing calls
no test coverage detected