public negate(): ContextKeyExpression {
const result: ContextKeyExpression[] = [];
for (const expr of this.expr) {
result.push(expr.negate());
}
this.negated = ContextKeyOrExpr.create(result, this, true)!;
}
return this.negated;
}
}