MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / callCompilationCallback

Function callCompilationCallback

src/ast/ast_tls.cpp:16–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16void callCompilationCallback(const string & moduleName, const string & fileName, const string & status) {
17 daScriptCompilationCallback callback = nullptr;
18 {
19 lock_guard<mutex> lock(compilationCallbackMutex);
20 callback = compilationCallback;
21 }
22 if (callback) {
23 callback(moduleName, fileName, status);
24 }
25}
26
27DynamicModuleInfo::~DynamicModuleInfo() {
28 for (auto handler : dll_handlers) {

Callers 3

parseDaScriptFunction · 0.85

Calls 1

callbackFunction · 0.85

Tested by

no test coverage detected