4 using System.Collections;
5 using System.Collections.Generic;
7 namespace SiliconStudio.Shaders.Ast
14 #region Public Properties
42 #region Public Methods
48 ChildrenList.Add(Condition);
49 ChildrenList.Add(Then);
50 ChildrenList.Add(Else);
57 return string.Format(
"if ({0}) then {{...}}{1}", Condition, Else == null ? string.Empty :
"...");
override IEnumerable< Node > Childrens()
Gets the child nodes. An enumeration of child nodes
Base root class for all statements.
override string ToString()