Veil.SuperSimple.SuperSimpleTemplateParserState.GetParentBlock C# (CSharp) 메소드

GetParentBlock() 공개 메소드

public GetParentBlock ( ) : SyntaxTreeNode
리턴 Veil.Parser.SyntaxTreeNode
        public SyntaxTreeNode GetParentBlock()
        {
            if (this.scopeStack.Count < 2) return null;

            return this.scopeStack.First.Next.Value.Block.LastNode();
        }