handleEvaluateQuickjsByteCodeResult function
Implementation
void handleEvaluateQuickjsByteCodeResult(Object handle, int result) {
_EvaluateQuickjsByteCodeContext context = handle as _EvaluateQuickjsByteCodeContext;
malloc.free(context.bytes);
if (context.url != nullptr) {
malloc.free(context.url);
}
context.completer.complete(result == 1);
}