17 references to Ident
Microsoft.ML.Transforms (17)
Expression\LambdaParser.cs (13)
231
case TokKind.
Ident
:
368
if (TidCur == TokKind.
Ident
)
401
if (tok.Kind == TokKind.
Ident
)
408
PostTidError(TokCur, TokKind.
Ident
);
604
case TokKind.
Ident
:
607
if (TidPeek() == TokKind.Dot && TidPeek(2) == TokKind.
Ident
&& TidPeek(3) == TokKind.OpenParen)
668
if (TidCur == TokKind.
Ident
)
670
PostTidError(TokCur, TokKind.
Ident
);
676
Contracts.Assert(TidCur == TokKind.
Ident
);
688
Contracts.Assert(TidCur == TokKind.
Ident
);
690
Contracts.Assert(TidPeek(2) == TokKind.
Ident
);
776
if (tok.Kind == TokKind.
Ident
)
783
PostTidError(TokCur, TokKind.
Ident
);
Expression\Tokens.cs (4)
46
Contracts.Assert(tidContext == tid || tid == TokKind.
Ident
);
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; }
92
if (KindContext != TokKind.
Ident
)