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