Class Operator
Represents an operator with precedence.
Inherited Members
Namespace: Swan.Parsers
Syntax
public class Operator
Properties
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String | The name. |
Precedence
Gets or sets the precedence.
Declaration
public int Precedence { get; set; }
Property Value
Type | Description |
---|---|
Int32 | The precedence. |
RightAssociative
Gets or sets a value indicating whether [right associative].
Declaration
public bool RightAssociative { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|