reportError static method
Implementation
static void reportError(int languageType, int errorType, String msg) {
var msg_ffi = Uint8ListFFI.createWithString(msg);
ErrorReportCppMixin.lib.reportError(languageType, errorType, msg_ffi);
Uint8ListFFI.free(msg_ffi);
}