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

SetEndSourceLocation() public static method

public static SetEndSourceLocation ( Node node, IToken token ) : void
node Node
token IToken
return void
        public static void SetEndSourceLocation(Node node, IToken token)
        {
            node.set_EndSourceLocation(ToSourceLocation(token));
        }
UnityScriptParser