Inhalte

ST/ExST Practices: GOTO (JMP)

Table of Contents

Walking Dead

First, JMPs are allowed. However, there are restrictions:

  • JMPs may only jump to the end of a function, method, property, action, or program. With end is meant the point before all output parameters and the return value is described. If there are no output parameters/return values, a RETURN must be used.

  • There may be only one label per unit (function, method, property, action, program) which is jumped to with a JMP.