ABT.GotoLabelsGrabber.Visit C# (CSharp) Method

Visit() public method

public Visit ( CompoundStmt stmt ) : void
stmt CompoundStmt
return void
        public override void Visit(CompoundStmt stmt) =>
            stmt.Stmts.ForEach(_ => _.Item2.Accept(this));

Same methods

GotoLabelsGrabber::Visit ( BreakStmt stmt ) : void
GotoLabelsGrabber::Visit ( CaseStmt stmt ) : void
GotoLabelsGrabber::Visit ( ContStmt stmt ) : void
GotoLabelsGrabber::Visit ( DefaultStmt stmt ) : void
GotoLabelsGrabber::Visit ( DoWhileStmt stmt ) : void
GotoLabelsGrabber::Visit ( ExprStmt stmt ) : void
GotoLabelsGrabber::Visit ( ForStmt stmt ) : void
GotoLabelsGrabber::Visit ( GotoStmt stmt ) : void
GotoLabelsGrabber::Visit ( IfElseStmt stmt ) : void
GotoLabelsGrabber::Visit ( IfStmt stmt ) : void
GotoLabelsGrabber::Visit ( LabeledStmt stmt ) : void
GotoLabelsGrabber::Visit ( ReturnStmt stmt ) : void
GotoLabelsGrabber::Visit ( Stmt stmt ) : void
GotoLabelsGrabber::Visit ( SwitchStmt stmt ) : void
GotoLabelsGrabber::Visit ( WhileStmt stmt ) : void
GotoLabelsGrabber