(mapFnc: IContextKeyExprMapper)
| 1070 | } |
| 1071 | |
| 1072 | public map(mapFnc: IContextKeyExprMapper): ContextKeyExpression { |
| 1073 | return new ContextKeyAndExpr(this.expr.map(expr => expr.map(mapFnc))); |
| 1074 | } |
| 1075 | |
| 1076 | public negate(): ContextKeyExpression { |
| 1077 | let result: ContextKeyExpression[] = []; |