(other: ContextKeyExpression)
| 925 | } |
| 926 | |
| 927 | public equals(other: ContextKeyExpression): boolean { |
| 928 | if (other.type === this.type) { |
| 929 | return this._actual.equals(other._actual); |
| 930 | } |
| 931 | return false; |
| 932 | } |
| 933 | |
| 934 | public evaluate(context: IContext): boolean { |
| 935 | return !this._actual.evaluate(context); |