Create an app with:
-
A form with this:

-
A server module with this:

-
A table with this:

Set breakpoints on the two lines x = 5 and x = 2, then run the app.
When execution pauses at x = 2, pressing Step In or Step Over twice should move through app_tables.table_1.get and stop at x = 3.
While Step Over behaves as expected, Step In instead acts like Resume: it continues execution, leaves the current scope, and jumps to the next breakpoint at x = 5.
Here is the clone link: