AjTalk.Compiler.Token.IsOperator C# (CSharp) Method

IsOperator() public method

public IsOperator ( ) : bool
return bool
        public bool IsOperator()
        {
            return this.Type == TokenType.Operator ||
                (this.Type == TokenType.Punctuation && this.Value == "|");
        }