(mapFnc: IContextKeyExprMapper)
| 706 | } |
| 707 | |
| 708 | public map(mapFnc: IContextKeyExprMapper): ContextKeyExpression { |
| 709 | return mapFnc.mapEquals(this.key, this.value); |
| 710 | } |
| 711 | |
| 712 | public negate(): ContextKeyExpression { |
| 713 | return ContextKeyNotEqualsExpr.create(this.key, this.value); |