Home | History | Annotate | Download | only in visupng

Lines Matching full:clause

127     the else clause is optional, the Catch clause is required.  The
133 executed within the Try clause (typically within a function called
134 by the Try clause), and the exception is not caught by a nested
136 to the expression, and control will jump to the Catch clause. If no
138 the Catch clause is not executed.
146 IMPORTANT: Jumping into or out of a Try clause (for example via
149 into or out of a Catch clause is okay, and so is jumping around
150 inside a Try clause. In many cases where one is tempted to return
151 from a Try clause, it will suffice to use Throw, and then return
152 from the Catch clause. Another option is to set a flag variable and
153 use goto to jump to the end of the Try clause, then check the flag
157 changed within the Try clause are undefined after an exception is
168 clause of the innermost enclosing Try clause. The expression must