namespace Swan.Parsers { /// /// Represents an operator with precedence. /// public class Operator { /// /// Gets or sets the name. /// /// /// The name. /// public string Name { get; set; } /// /// Gets or sets the precedence. /// /// /// The precedence. /// public int Precedence { get; set; } /// /// Gets or sets a value indicating whether [right associative]. /// /// /// true if [right associative]; otherwise, false. /// public bool RightAssociative { get; set; } } }