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(Target);
69 ChildrenList.Add(Value);
76 return string.Format(
"{0} {1} {2}", Target, Operator.ConvertToString(), Value);
AssignmentExpression(AssignmentOperator @operator, Expression target, Expression value)
Initializes a new instance of the AssignmentExpression class.
override IEnumerable< Node > Childrens()
Gets the child nodes. An enumeration of child nodes
AssignmentOperator
Assignment operator used in assignment expression (a = b) or statements (a = b;)
AssignmentExpression()
Initializes a new instance of the AssignmentExpression class.
override string ToString()