(mapFnc: IContextKeyExprMapper)
| 502 | } |
| 503 | |
| 504 | public map(mapFnc: IContextKeyExprMapper): ContextKeyExpression { |
| 505 | return mapFnc.mapNotEquals(this.key, this.value); |
| 506 | } |
| 507 | |
| 508 | public negate(): ContextKeyExpression { |
| 509 | return ContextKeyEqualsExpr.create(this.key, this.value); |
nothing calls this directly
no test coverage detected