()
| 94 | } |
| 95 | |
| 96 | func (ls ConditionExpression) GetIdentifiers() []Identifier { |
| 97 | var identifiers []Identifier |
| 98 | |
| 99 | if ls.Left.IsIdentifier() { |
| 100 | identifiers = append(identifiers, Identifier{ls.Left.GetToken()}) |
| 101 | } |
| 102 | |
| 103 | if ls.Right.IsIdentifier() { |
| 104 | identifiers = append(identifiers, Identifier{ls.Right.GetToken()}) |
| 105 | } |
| 106 | |
| 107 | return identifiers |
| 108 | } |
| 109 | |
| 110 | // ContainExpression - TokenType of Expression that represents structure for IN operator |
| 111 | // |
nothing calls this directly
no test coverage detected