1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-20 18:23:21 +00:00

1. Unified how JS modules can be integrated, by creating an ILibDuktape_Polyfills_JS_Init() method.

2. Updated behavior so when modules are queried, local filesystem takes precedence on search results
3. Updated 'promise' integration to use the new method above
4. Added 'win-registry' integration on windows, so it can be used by agentcore.c
This commit is contained in:
Bryan Roe
2019-01-28 15:56:41 -08:00
parent f38ec1df08
commit 61de975f3a
4 changed files with 37 additions and 222 deletions

View File

@@ -22,5 +22,6 @@ limitations under the License.
extern int g_displayStreamPipeMessages;
extern int g_displayFinalizerMessages;
void ILibDuktape_Polyfills_Init(duk_context *ctx);
void ILibDuktape_Polyfills_JS_Init(duk_context *ctx);
#endif