Class InfixBinary
Represents a binary infix expression in the Alang language.
Inherited Members
Namespace: Automata.Core.Alang
Assembly: Automata.Core.dll
Syntax
public abstract class InfixBinary : AlangExpr
Remarks
This is an abstract class that serves as a base for specific binary infix expressions.
Constructors
| Edit this page View SourceInfixBinary(AlangExpr, AlangExpr)
Initializes a new instance of the InfixBinary class with the specified left and right operands.
Declaration
public InfixBinary(AlangExpr left, AlangExpr right)
Parameters
Type | Name | Description |
---|---|---|
AlangExpr | left | The left operand of the binary infix expression. |
AlangExpr | right | The right operand of the binary infix expression. |
Properties
| Edit this page View SourceLeft
Left operand of the binary infix expression.
Declaration
public AlangExpr Left { get; }
Property Value
Type | Description |
---|---|
AlangExpr |
Right
Right operand of the binary infix expression.
Declaration
public AlangExpr Right { get; }
Property Value
Type | Description |
---|---|
AlangExpr |