We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08c67e4 commit f9f6067Copy full SHA for f9f6067
src/vs/platform/contextkey/common/contextkey.ts
@@ -129,7 +129,7 @@ export abstract class ContextKeyExpr {
129
/**
130
* Warning: experimental; the API might change.
131
*/
132
- public static deserializeOrErrorNew(serialized: string | null | undefined): { type: 'ok'; expr: ContextKeyExpr } | { type: 'error'; readonly lexingErrors: string[]; readonly parsingErrors: readonly string[] } {
+ public static deserializeOrErrorNew(serialized: string | null | undefined): { type: 'ok'; expr: ContextKeyExpression } | { type: 'error'; readonly lexingErrors: string[]; readonly parsingErrors: readonly string[] } {
133
if (!serialized) {
134
return { type: 'error', lexingErrors: [], parsingErrors: [] };
135
}
0 commit comments