UnityScript.Parser.UnityScriptParser.SetUpLoopLabel C# (CSharp) Method

SetUpLoopLabel() public method

public SetUpLoopLabel ( Node node ) : string
node Node
return string
        public string SetUpLoopLabel(Node node)
        {
            string[] textArray1 = new string[] { "for" };
            string uniqueName = this._context.GetUniqueName(textArray1);
            node.set_Item("UpdateLabel", uniqueName);
            return uniqueName;
        }
UnityScriptParser