public static deserialize(serialized: string | null | undefined): ContextKeyExpression | undefined {
if (serialized === undefined || serialized === null) { // an empty string needs to be handled by the parser to get a corresponding parsing error reported
}
const expr = this._parser.parse(serialized);