Ejemplo n.º 1
0
 public void visitDeferStatement(@NotNull GoDeferStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 2
0
 public void visitBreakStatement(@NotNull GoBreakStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 3
0
 public void visitContinueStatement(@NotNull GoContinueStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 4
0
 public void visitSimpleStatement(@NotNull GoSimpleStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 5
0
 public void visitSwitchStatement(@NotNull GoSwitchStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 6
0
 public void visitReturnStatement(@NotNull GoReturnStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 7
0
 public void visitSendStatement(@NotNull GoSendStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 8
0
 public void visitLabeledStatement(@NotNull GoLabeledStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 9
0
 public void visitAssignmentStatement(@NotNull GoAssignmentStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 10
0
 public void visitIfStatement(@NotNull GoIfStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 11
0
 public void visitGotoStatement(@NotNull GoGotoStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 12
0
 public void visitForStatement(@NotNull GoForStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 13
0
 public void visitFallthroughStatement(@NotNull GoFallthroughStatement o) {
   visitStatement(o);
 }
Ejemplo n.º 14
0
 public void visitElseStatement(@NotNull GoElseStatement o) {
   visitStatement(o);
 }