Skip to content

Commit cf9f79e

Browse files
authored
Docs: clarify wildcard matching for ASYNCIFY_ADD and ASYNCIFY_ONLY (#18042)
Fixes: #18030
1 parent 68c91ca commit cf9f79e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/settings.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -834,14 +834,18 @@ var ASYNCIFY_REMOVE = [];
834834
// in the safest way possible, this is only useful if you use IGNORE_INDIRECT
835835
// and use this list to fix up some indirect calls that *do* need to be
836836
// instrumented.
837-
// See notes on ASYNCIFY_REMOVE about the names.
837+
//
838+
// See notes on ASYNCIFY_REMOVE about the names, including wildcard matching and
839+
// character substitutions.
838840
// [link]
839841
var ASYNCIFY_ADD = [];
840842

841843
// If the Asyncify only-list is provided, then *only* the functions in the list
842844
// will be instrumented. Like the remove-list, getting this wrong will break
843845
// your application.
844-
// See notes on ASYNCIFY_REMOVE about the names.
846+
//
847+
// See notes on ASYNCIFY_REMOVE about the names, including wildcard matching and
848+
// character substitutions.
845849
// [link]
846850
var ASYNCIFY_ONLY = [];
847851

0 commit comments

Comments
 (0)