Drop some debugging code

This commit is contained in:
Richard Feldman 2023-03-16 19:22:44 -04:00
parent 15e0f416d0
commit 2347565bf0
No known key found for this signature in database
GPG Key ID: F1F21AA5B1D9E43B

View File

@ -269,17 +269,8 @@ napi_value call_roc(napi_env env, napi_callback_info info) {
// Call the Roc function to populate `roc_ret`'s bytes.
struct RocStr roc_ret;
printf("Calling Roc...\n"); // TODO small string is busted for some reason here
// for(size_t i = 0; i < roc_arg_strlen; i++) {
// printf("%c ", ((char*)&roc_str_arg)[i]);
// }
// printf("\n");
roc__mainForHost_1_exposed_generic(&roc_ret, &roc_str_arg);
printf("Called Roc...\n");
// Create a Node string from the Roc string and return it.
char* roc_str_contents;