(mapFnc: IContextKeyExprMapper)
| 1198 | } |
| 1199 | |
| 1200 | public map(mapFnc: IContextKeyExprMapper): ContextKeyExpression { |
| 1201 | return new ContextKeyOrExpr(this.expr.map(expr => expr.map(mapFnc))); |
| 1202 | } |
| 1203 | |
| 1204 | public negate(): ContextKeyExpression { |
| 1205 | let result: ContextKeyExpression[] = []; |