5.16.7.8. Export

Start data section to src/flx_parse.mly[15 /35 ] Next Prev First Last
  1163: export_statement:
  1164:   | EXPORT FUNCTION suffixed_name AS STRING SEMI
  1165:     {
  1166:       `AST_export_fun (rstoken $1 $6, $3, snd $5)
  1167:     }
  1168: 
  1169:   | EXPORT PROCEDURE suffixed_name AS STRING SEMI
  1170:     {
  1171:       `AST_export_fun (rstoken $1 $6, $3, snd $5)
  1172:     }
  1173: 
  1174:   | EXPORT TYPE LPAR expr RPAR AS STRING SEMI
  1175:     {
  1176:       `AST_export_type (rstoken $1 $8, typecode_of_expr $4, snd $7)
  1177:     }
  1178: 
End data section to src/flx_parse.mly[15]