Boo.Lang.Parser.BooParserBase.SetEndSourceLocation C# (CSharp) Method

SetEndSourceLocation() private method

private SetEndSourceLocation ( Node node, antlr.IToken token ) : void
node Node
token antlr.IToken
return void
        private void SetEndSourceLocation(Node node, IToken token)
        {
            node.EndSourceLocation = SourceLocationFactory.ToSourceLocation(token);
        }
BooParserBase