Pchp.CodeAnalysis.Semantics.Graph.GraphVisitor.VisitCFGBlockInternal C# (CSharp) Method

VisitCFGBlockInternal() protected method

Visits block statements and its edge to next block.
protected VisitCFGBlockInternal ( BoundBlock x ) : void
x BoundBlock
return void
        protected virtual void VisitCFGBlockInternal(BoundBlock x)
        {
            VisitCFGBlockStatements(x);

            if (x.NextEdge != null)
                x.NextEdge.Visit(this);
        }