private _term(): ContextKeyExpression | undefined {
if (this._matchOne(TokenType.Neg)) {
switch (peek.type) {
case TokenType.True:
this._advance();
return ContextKeyFalseExpr.INSTANCE;
this._advance();
return ContextKeyTrueExpr.INSTANCE;
this._advance();
const expr = this._expr();