(mapFnc: IContextKeyExprMapper)
| 363 | } |
| 364 | |
| 365 | public map(mapFnc: IContextKeyExprMapper): ContextKeyExpression { |
| 366 | return mapFnc.mapDefined(this.key); |
| 367 | } |
| 368 | |
| 369 | public negate(): ContextKeyExpression { |
| 370 | return ContextKeyNotExpr.create(this.key); |
nothing calls this directly
no test coverage detected