(mapFnc: IContextKeyExprMapper)
| 774 | } |
| 775 | |
| 776 | public map(mapFnc: IContextKeyExprMapper): ContextKeyExpression { |
| 777 | return mapFnc.mapEquals(this.key, this.value); |
| 778 | } |
| 779 | |
| 780 | public negate(): ContextKeyExpression { |
| 781 | return ContextKeyNotEqualsExpr.create(this.key, this.value); |