[decompiler] process-drawable-h (#561)

* decomile process-drawable-h

* one more
This commit is contained in:
water111
2021-06-05 23:55:36 -04:00
committed by GitHub
parent 54f72e9b10
commit fef7fad65a
33 changed files with 2389 additions and 214 deletions
+4 -2
View File
@@ -2017,13 +2017,15 @@ StorePlainDeref::StorePlainDeref(DerefElement* dst,
int my_idx,
RegisterAccess base_var,
std::optional<TypeSpec> dst_cast_type,
std::optional<TypeSpec> src_cast_type)
std::optional<TypeSpec> src_cast_type,
int size)
: m_dst(dst),
m_expr(std::move(expr)),
m_my_idx(my_idx),
m_base_var(base_var),
m_dst_cast_type(std::move(dst_cast_type)),
m_src_cast_type(std::move(src_cast_type)) {}
m_src_cast_type(std::move(src_cast_type)),
m_size(size) {}
goos::Object StorePlainDeref::to_form_internal(const Env& env) const {
std::vector<goos::Object> lst = {pretty_print::to_symbol("set!")};