(booleanExpression *ast.BooleanExpression)
| 759 | } |
| 760 | |
| 761 | func processBooleanExpression(booleanExpression *ast.BooleanExpression) (bool, error) { |
| 762 | if booleanExpression.Boolean.Literal == token.TRUE { |
| 763 | return true, nil |
| 764 | } |
| 765 | return false, nil |
| 766 | } |
| 767 | |
| 768 | func getTifierValue(tifier ast.Tifier, row map[string]ValueInterface) (ValueInterface, error) { |
| 769 | switch mappedTifier := tifier.(type) { |
no outgoing calls
no test coverage detected