Jurassic.Compiler.NameExpression.GetHashCode C# (CSharp) Method

GetHashCode() public method

Calculates the hash code for this object.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return this.Name.GetHashCode() ^ this.Scope.GetHashCode();
        }