2 writes to Value
Microsoft.ML.Transforms (2)
Expression\Tokens.cs (2)
88
public IdentToken(TextSpan span, string val) : base(span, TokKind.Ident) {
Value
= val; }
89
public IdentToken(TextSpan span, string val, TokKind tidContext) : base(span, TokKind.Ident, tidContext) {
Value
= val; }
9 references to Value
Microsoft.ML.Transforms (9)
Expression\LambdaParser.cs (3)
232
return tok.As<IdentToken>().
Value
;
403
name = tok.As<IdentToken>().
Value
;
778
name = tok.As<IdentToken>().
Value
;
Expression\Node.cs (4)
696
Contracts.AssertNonEmpty(tok.
Value
);
697
Value = tok.
Value
;
723
Contracts.AssertNonEmpty(tok.
Value
);
724
Value = tok.
Value
;
Expression\Tokens.cs (2)
93
return "ContextKeyword: " +
Value
;
94
return "Ident: " +
Value
;