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

IsLabelInUse() public method

public IsLabelInUse ( Node node ) : bool
node Node
return bool
        public bool IsLabelInUse(Node node)
        {
            return node.ContainsAnnotation("LabelInUse");
        }
UnityScriptParser