public override bool Visit(Paragraph paragraph)
 {
     SectionOrParagraphUsageChecker.CheckParagraph(paragraph);
     return(true);
 }
 public override bool Visit(Section section)
 {
     SectionOrParagraphUsageChecker.CheckSection(section);
     return(true);
 }
 public override bool Visit(PerformProcedure performProcedureNode)
 {
     SectionOrParagraphUsageChecker.CheckReferenceToParagraphOrSection(performProcedureNode);
     return(true);
 }