We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed42c96 commit c23451bCopy full SHA for c23451b
packages/gems/js/ext/js/witapi-core.c
@@ -340,7 +340,6 @@ bool rb_abi_guest_rb_set_should_prohibit_rewind(bool value) {
340
return old;
341
}
342
343
-
344
static VALUE rb_abi_export_stage = Qnil;
345
static rb_abi_guest_own_rb_abi_value_t rb_abi_export_rb_value_to_js(void) {
346
VALUE staged = rb_abi_export_stage;
@@ -350,7 +349,8 @@ static rb_abi_guest_own_rb_abi_value_t rb_abi_export_rb_value_to_js(void) {
350
349
351
352
void rb_abi_stage_rb_value_to_js(VALUE value) {
353
- assert(rb_abi_export_stage == Qnil && "rb_abi_stage_rb_value_to_js: stage is not empty!?");
+ assert(rb_abi_export_stage == Qnil &&
+ "rb_abi_stage_rb_value_to_js: stage is not empty!?");
354
rb_abi_export_stage = value;
355
356
0 commit comments