(ex)
| 12516 | } |
| 12517 | } |
| 12518 | function validateExpression(ex) { |
| 12519 | if (ex.operator === "isnullorEmpty") { |
| 12520 | ex.errorMessage = null; |
| 12521 | return; |
| 12522 | } |
| 12523 | const s = (0, _searchTerm.getText)(ex); |
| 12524 | if (s.length === 0) ex.errorMessage = (0, _language.strings).labelRequired; |
| 12525 | else ex.errorMessage = null; |
| 12526 | } |
| 12527 | function clearExpressionValidation(ex) { |
| 12528 | if (ex.operator === "isnullorEmpty") { |
| 12529 | ex.errorMessage = null; |
nothing calls this directly
no outgoing calls
no test coverage detected