This commit is contained in:
water
2021-08-14 23:15:10 -04:00
parent 885d7c1eea
commit 78928e4c04
27 changed files with 1070 additions and 71 deletions
+4
View File
@@ -2621,6 +2621,10 @@ goos::Object StackStructureDefElement::to_form_internal(const Env&) const {
return pretty_print::build_list(fmt::format("new 'stack-no-clear 'inline-array '{} {}",
m_entry.ref_type.get_single_arg().print(),
m_entry.hint.container_size));
case StackStructureHint::ContainerType::ARRAY:
return pretty_print::build_list(fmt::format("new 'stack-no-clear 'array '{} {}",
m_entry.ref_type.get_single_arg().print(),
m_entry.hint.container_size));
default:
assert(false);
}