public void visitDeferStatement(@NotNull GoDeferStatement o) {
   visitStatement(o);
 }
 public void visitBreakStatement(@NotNull GoBreakStatement o) {
   visitStatement(o);
 }
 public void visitContinueStatement(@NotNull GoContinueStatement o) {
   visitStatement(o);
 }
 public void visitSimpleStatement(@NotNull GoSimpleStatement o) {
   visitStatement(o);
 }
 public void visitSwitchStatement(@NotNull GoSwitchStatement o) {
   visitStatement(o);
 }
 public void visitReturnStatement(@NotNull GoReturnStatement o) {
   visitStatement(o);
 }
 public void visitSendStatement(@NotNull GoSendStatement o) {
   visitStatement(o);
 }
 public void visitLabeledStatement(@NotNull GoLabeledStatement o) {
   visitStatement(o);
 }
 public void visitAssignmentStatement(@NotNull GoAssignmentStatement o) {
   visitStatement(o);
 }
 public void visitIfStatement(@NotNull GoIfStatement o) {
   visitStatement(o);
 }
 public void visitGotoStatement(@NotNull GoGotoStatement o) {
   visitStatement(o);
 }
 public void visitForStatement(@NotNull GoForStatement o) {
   visitStatement(o);
 }
 public void visitFallthroughStatement(@NotNull GoFallthroughStatement o) {
   visitStatement(o);
 }
 public void visitElseStatement(@NotNull GoElseStatement o) {
   visitStatement(o);
 }