mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 02:40:53 +01:00
Co-authored-by: luca salmin <luca.salmin@studioevil.com>
This commit is contained in:
parent
fe71aff7af
commit
4fdead5e3c
1 changed files with 5 additions and 0 deletions
|
@ -77,6 +77,11 @@
|
||||||
if (LUAU_UNLIKELY(!!interrupt)) \
|
if (LUAU_UNLIKELY(!!interrupt)) \
|
||||||
{ /* the interrupt hook is called right before we advance pc */ \
|
{ /* the interrupt hook is called right before we advance pc */ \
|
||||||
VM_PROTECT(L->ci->savedpc++; interrupt(L, -1)); \
|
VM_PROTECT(L->ci->savedpc++; interrupt(L, -1)); \
|
||||||
|
if (L->status != 0) \
|
||||||
|
{ \
|
||||||
|
L->ci->savedpc--; \
|
||||||
|
goto exit; \
|
||||||
|
} \
|
||||||
} \
|
} \
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue