Skip to content

Remove unused ruby_run_node API from witapi #311

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions ext/witapi/witapi-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,6 @@ rb_abi_guest_ruby_options(rb_abi_guest_list_string_t *args) {
return rb_abi_guest_rb_iseq_new(result);
}

rb_abi_guest_rb_errno_t
rb_abi_guest_ruby_run_node(rb_abi_guest_rb_iseq_t node) {
int result;
void *iseq = rb_abi_guest_rb_iseq_get(&node);
RB_WASM_LIB_RT(ruby_run_node(iseq))
return result;
}

void rb_abi_guest_ruby_script(rb_abi_guest_string_t *name) {
RB_WASM_LIB_RT(ruby_script(name->ptr))
}
Expand Down