Comment on Port React Compiler to RustComments−bhouston3moSo the port makes sense logically but how easy it is to contribute new features to it? Does the complex memory model (arena) impose complexity?−awesan3moHow is using arenas complex? If anything it should make things simpler to understand to people who are not used to manual memory management.−pmarin3moThe arena is replacing the javacript garbage collector not memory managament.−logicprog3moI thought arenas were one of the simplest and most easy to deal with and conceptualize memory management strategies around. Arguably easy, even easier to understand and just as easy to manage as GC. Did they do something special?
Comments
So the port makes sense logically but how easy it is to contribute new features to it? Does the complex memory model (arena) impose complexity?
How is using arenas complex? If anything it should make things simpler to understand to people who are not used to manual memory management.
The arena is replacing the javacript garbage collector not memory managament.
I thought arenas were one of the simplest and most easy to deal with and conceptualize memory management strategies around. Arguably easy, even easier to understand and just as easy to manage as GC. Did they do something special?