Fixing build

This commit is contained in:
Eric Amodio
2020-08-26 02:48:41 -04:00
parent 46860a105b
commit b0f04b60e5
@@ -409,7 +409,7 @@ export class ContextKeyEqualsExpr implements IContextKeyExpression {
export class ContextKeyInExpr implements IContextKeyExpression {
public static create(key: string, valueKey: string): ContextKeyExpression {
public static create(key: string, valueKey: string): ContextKeyInExpr {
return new ContextKeyInExpr(key, valueKey);
}
@@ -478,7 +478,7 @@ export class ContextKeyInExpr implements IContextKeyExpression {
export class ContextKeyNotInExpr implements IContextKeyExpression {
public static create(actual: ContextKeyInExpr): ContextKeyExpression {
public static create(actual: ContextKeyInExpr): ContextKeyNotInExpr {
return new ContextKeyNotInExpr(actual);
}