File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/jvm/main/org/jetbrains/kotlinx/lincheck/transformation Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,10 @@ internal fun GeneratorAdapter.storeArguments(methodDescriptor: String): IntArray
184
184
/* *
185
185
* Executes a try-catch-finally block within the context of the GeneratorAdapter.
186
186
*
187
- * Attention: this method does not insert `finally` blocks before inner return and throw statements.
187
+ * **Attention**:
188
+ * * This method does not insert `finally` blocks before inner return and throw statements.
189
+ * * It is forbidden to jump from the blocks outside and between them.
190
+ * * The operand stack must be empty by the beginning of the [tryCatchFinally].
188
191
*
189
192
* @param tryBlock The code block to be executed in the try section.
190
193
* @param exceptionType The type of exception to be caught in the `catch` section, or null to catch all exceptions.
You can’t perform that action at this time.
0 commit comments