2 writes to previousID
System.ServiceModel (2)
System\ServiceModel\Dispatcher\XPathLexer.cs (2)
486
this.
previousID
= XPathTokenID.Unknown;
580
this.
previousID
= this.token.TokenID;
9 references to previousID
System.ServiceModel (9)
System\ServiceModel\Dispatcher\XPathLexer.cs (9)
973
return (this.
previousID
!= XPathTokenID.Unknown) &&
974
(this.
previousID
!= XPathTokenID.AtSign) &&
975
(this.
previousID
!= XPathTokenID.DblColon) &&
976
(this.
previousID
!= XPathTokenID.LParen) &&
977
(this.
previousID
!= XPathTokenID.LBracket) &&
978
(this.
previousID
!= XPathTokenID.Comma) &&
979
(this.
previousID
& XPathTokenID.Operator) == 0 &&
980
(this.
previousID
& XPathTokenID.NamedOperator) == 0;
995
ThrowError(QueryCompileError.UnsupportedOperator, this.
previousID
.ToString() + "->" + qname.Name);