Class BinaryOperator
- Namespace
- ReFuel.CVarScript.AST
- Assembly
- ReFuel.dll
public class BinaryOperator : Expression
- Inheritance
-
BinaryOperator
- Inherited Members
Constructors
BinaryOperator(BinaryOperatorKind, Expression, Expression)
public BinaryOperator(BinaryOperatorKind kind, Expression left, Expression right)
Parameters
kind
BinaryOperatorKindleft
Expressionright
Expression
Properties
Left
public Expression Left { get; }
Property Value
OpKind
public BinaryOperatorKind OpKind { get; }
Property Value
Right
public Expression Right { get; }