We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22b0851 commit 6cb86e3Copy full SHA for 6cb86e3
jerry-core/vm/vm.c
@@ -3255,7 +3255,8 @@ vm_loop (vm_frame_ctx_t *frame_ctx_p) /**< frame context */
3255
| JERRY_DEBUGGER_VM_EXCEPTION_THROWN);
3256
3257
if ((JERRY_CONTEXT (debugger_flags) & JERRY_DEBUGGER_CONNECTED)
3258
- && !(frame_ctx_p->bytecode_header_p->status_flags & CBC_CODE_FLAGS_DEBUGGER_IGNORE)
+ && !(frame_ctx_p->bytecode_header_p->status_flags
3259
+ & (CBC_CODE_FLAGS_DEBUGGER_IGNORE | CBC_CODE_FLAGS_STATIC_FUNCTION))
3260
&& !(JERRY_CONTEXT (debugger_flags) & dont_stop))
3261
{
3262
/* Save the error to a local value, because the engine enters breakpoint mode after,
0 commit comments