(context: IContext)
| 881 | } |
| 882 | |
| 883 | public evaluate(context: IContext): boolean { |
| 884 | let value = context.getValue<any>(this.key); |
| 885 | return this.regexp ? this.regexp.test(value) : false; |
| 886 | } |
| 887 | |
| 888 | public serialize(): string { |
| 889 | const value = this.regexp |