9 references to String
Microsoft.Build (7)
Evaluation\Conditionals\Parser.cs (6)
300return new FunctionCallExpressionNode(current.String, arglist); 358return new StringExpressionNode(current.String, current.Expandable); 362return new NumericExpressionNode(current.String); 366return new StringExpressionNode(current.String, true /* requires expansion */); 370return new StringExpressionNode(current.String, true /* requires expansion */); 374return new StringExpressionNode(current.String, true /* requires expansion */);
Evaluation\Conditionals\Scanner.cs (1)
101return _lookahead.String;
Microsoft.Build.Engine.UnitTests (2)
Scanner_Tests.cs (2)
273Assert.Equal(0, String.Compare(Token.And.String, lexer.IsNextString())); 277Assert.Equal(0, String.Compare(Token.Or.String, lexer.IsNextString()));