5.16.7.14. Goto and Label

The goto and label statements are ONLY for testing! Note labels are declared like
label:>
to avoid ambiguity with 'x:int'.
Start data section to src/flx_parse.mly[21 /35 ] Next Prev First Last
  1763: goto_statement:
  1764:   | GOTO NAME SEMI
  1765:     {
  1766:       `AST_goto (rstoken $1 $3, snd $2)
  1767:     }
  1768: label_statement:
  1769:   | NAME COLONGREATER
  1770:     {
  1771:       `AST_label (rstoken (fst $1) $2, snd $1)
  1772:     }
  1773: 
End data section to src/flx_parse.mly[21]