(mapFnc: IContextKeyExprMapper)
| 897 | } |
| 898 | |
| 899 | public map(mapFnc: IContextKeyExprMapper): ContextKeyRegexExpr { |
| 900 | return mapFnc.mapRegex(this.key, this.regexp); |
| 901 | } |
| 902 | |
| 903 | public negate(): ContextKeyExpression { |
| 904 | return ContextKeyNotRegexExpr.create(this); |