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 6cc3839Copy full SHA for 6cc3839
jerry-core/vm/vm.c
@@ -3256,7 +3256,8 @@ vm_loop (vm_frame_ctx_t *frame_ctx_p) /**< frame context */
3256
3257
if ((JERRY_CONTEXT (debugger_flags) & JERRY_DEBUGGER_CONNECTED)
3258
&& !(frame_ctx_p->bytecode_header_p->status_flags & CBC_CODE_FLAGS_DEBUGGER_IGNORE)
3259
- && !(JERRY_CONTEXT (debugger_flags) & dont_stop))
+ && !(JERRY_CONTEXT (debugger_flags) & dont_stop)
3260
+ && !(frame_ctx_p->bytecode_header_p->status_flags & CBC_CODE_FLAGS_STATIC_FUNCTION))
3261
{
3262
/* Save the error to a local value, because the engine enters breakpoint mode after,
3263
therefore an evaluation error, or user-created error throw would overwrite it. */
0 commit comments