2 instantiations of IdentToken
Microsoft.ML.Transforms (2)
Expression\Lexer.cs (1)
673
return new
IdentToken
(GetSpan(), nstr.Value.ToString());
Expression\Tokens.cs (1)
75
return new
IdentToken
(span, str, tid);
9 references to IdentToken
Microsoft.ML.Transforms (9)
Expression\LambdaParser.cs (7)
232
return tok.As<
IdentToken
>().Value;
403
name = tok.As<
IdentToken
>().Value;
669
return new IdentNode(TokMove().As<
IdentToken
>());
679
NameNode head = new NameNode(TokMove().As<
IdentToken
>());
693
NameNode ns = new NameNode(TokMove().As<
IdentToken
>());
696
NameNode head = new NameNode(TokMove().As<
IdentToken
>());
778
name = tok.As<
IdentToken
>().Value;
Expression\Node.cs (2)
693
public NameNode(
IdentToken
tok)
720
public IdentNode(
IdentToken
tok)