AjTalk.Compiler.Token.IsOperator C# (CSharp) Méthode

IsOperator() public méthode

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