From b0cedd20184f87a0918a49f096e0f2222b2ffd6c Mon Sep 17 00:00:00 2001 From: Veli Tekin <33375393+vvelitkn@users.noreply.github.com> Date: Sun, 12 Feb 2023 01:19:06 +0300 Subject: [PATCH] Update javascript-api.md --- _i18n/en/_docs/javascript-api.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/_i18n/en/_docs/javascript-api.md b/_i18n/en/_docs/javascript-api.md index 406f57ea..a428e3fa 100644 --- a/_i18n/en/_docs/javascript-api.md +++ b/_i18n/en/_docs/javascript-api.md @@ -379,7 +379,8 @@ Objects returned by e.g. [`Module.load()`](#module-load) and [`Process.enumerate + `Module.load(path)`: loads the specified module from the filesystem path and returns a [`Module`](#module) object. Throws an exception if the specified - module cannot be loaded. + module cannot be loaded. It can be used to load known module before or at the + same time to reduce errors and problems. {: #module-load} + `Module.ensureInitialized(name)`: ensures that initializers of the specified @@ -846,7 +847,9 @@ Interceptor.attach(f, { `glob` and returns their addresses as an array of [`NativePointer`](#nativepointer) objects. -+ `DebugSymbol.load(path)`: loads debug symbols for a specific module. ++ `DebugSymbol.load(path)`: loads debug symbols for a specific module. This feature is + not fully supported in Windows modules, {modulename}.pdb file must downloaded and + located in the project folder. ### Kernel