5.16.5.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[19 /33 ] Next Prev First Last
  1498: goto_statement:
  1499:   | GOTO NAME SEMI
  1500:     {
  1501:       `AST_goto (rstoken $1 $3, snd $2)
  1502:     }
  1503: label_statement:
  1504:   | NAME COLONGREATER
  1505:     {
  1506:       `AST_label (rstoken (fst $1) $2, snd $1)
  1507:     }
  1508: 
End data section to src/flx_parse.mly[19]