4 using System.Collections;
5 using System.Collections.Generic;
7 namespace SiliconStudio.Shaders.Ast
34 #region Public Properties
62 #region Public Methods
68 ChildrenList.Add(Left);
69 ChildrenList.Add(Right);
76 return string.Format(
"{0} {1} {2}", Left, Operator.ConvertToString(), Right);
Describes a binary expression.
override IEnumerable< Node > Childrens()
Gets the child nodes. An enumeration of child nodes
BinaryExpression()
Initializes a new instance of the BinaryExpression class.
BinaryOperator
Binary operator used in all binary expressions (except assignment expression).
BinaryExpression(BinaryOperator @operator, Expression left, Expression right)
Initializes a new instance of the BinaryExpression class.
override string ToString()