8 references to EndOfInput
Microsoft.Build (8)
Evaluation\Conditionals\Parser.cs (5)
114
if (!_lexer.IsNext(Token.TokenType.
EndOfInput
))
130
if (!_lexer.IsNext(Token.TokenType.
EndOfInput
))
154
if (Same(expression, Token.TokenType.
EndOfInput
))
184
if (!_lexer.IsNext(Token.TokenType.
EndOfInput
))
193
if (_lexer.IsNext(Token.TokenType.
EndOfInput
))
Evaluation\Conditionals\Scanner.cs (1)
140
if (_lookahead?.IsToken(Token.TokenType.
EndOfInput
) == true)
Evaluation\Conditionals\Token.cs (2)
29
internal static readonly Token EndOfInput = new Token(TokenType.
EndOfInput
);
143
TokenType.
EndOfInput
=> null,