Veil.Parser.Nodes.BlockNode.LastNode C# (CSharp) Method

LastNode() public method

Returns the last node in the block
public LastNode ( ) : SyntaxTreeNode
return SyntaxTreeNode
        public SyntaxTreeNode LastNode()
        {
            return this.nodes[this.nodes.Count - 1];
        }
    }