public static create(key: string, value: any, negated: ContextKeyExpression | null = null): ContextKeyExpression {
if (typeof value === 'boolean') {
return ContextKeyNotExpr.create(key, negated);
}
}
const constantValue = CONSTANT_VALUES.get(key);
if (typeof constantValue === 'boolean') {