File tree Expand file tree Collapse file tree
src/vs/platform/contextkey/common Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -409,7 +409,7 @@ export class ContextKeyEqualsExpr implements IContextKeyExpression {
409409
410410export class ContextKeyInExpr implements IContextKeyExpression {
411411
412- public static create ( key : string , valueKey : string ) : ContextKeyExpression {
412+ public static create ( key : string , valueKey : string ) : ContextKeyInExpr {
413413 return new ContextKeyInExpr ( key , valueKey ) ;
414414 }
415415
@@ -478,7 +478,7 @@ export class ContextKeyInExpr implements IContextKeyExpression {
478478
479479export class ContextKeyNotInExpr implements IContextKeyExpression {
480480
481- public static create ( actual : ContextKeyInExpr ) : ContextKeyExpression {
481+ public static create ( actual : ContextKeyInExpr ) : ContextKeyNotInExpr {
482482 return new ContextKeyNotInExpr ( actual ) ;
483483 }
484484
You can’t perform that action at this time.
0 commit comments