File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -527,6 +527,15 @@ exception is pending and no additional action is required. If the
527527instead of simply returning immediately, [`napi_is_exception_pending`][]
528528must be called in order to determine if an exception is pending or not.
529529
530+ In many cases when an N-API function is called and an exception is
531+ already pending, the function will return immediately with a
532+ `napi_status` of `napi_pending_exception`. However, this is not the case
533+ for all functions. N-API allows a subset of the functions to be
534+ called to allow for some minimal cleanup before returning to JavaScript.
535+ In that case, `napi_status` will reflect the status for the function. It
536+ will not reflect previous pending exceptions. To avoid confusion, check
537+ the error status after every function call.
538+
530539When an exception is pending one of two approaches can be employed.
531540
532541The first approach is to do any appropriate cleanup and then return so that
You can’t perform that action at this time.
0 commit comments