MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / fxBundleMapPut

Function fxBundleMapPut

xs/tools/xstBundle.c:70–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70static void fxBundleMapPut(const char *name, const char *source, size_t sourceLen)
71{
72 if (gBundleMapCount >= kBundleMapCap)
73 return;
74 gBundleMap[gBundleMapCount].name = name;
75 gBundleMap[gBundleMapCount].source = source;
76 gBundleMap[gBundleMapCount].sourceLen = sourceLen;
77 gBundleMapCount++;
78}
79
80static const txBundleEntry *fxBundleMapGet(const char *name)
81{

Callers 1

fxBundleRunFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected