rksm / hot-lib-reloader-rs

Reload Rust code without app restarts. For faster feedback cycles.
MIT License
597 stars 19 forks source link

Support for reloading impl methods #16

Open rksm opened 2 years ago

rksm commented 2 years ago

Currently impl methods are not supported, only plain functions. impl methods can be declared as no mangle as well so there is no reason to not support them. This will require some thinking about invocation: method(&self, arg) will work but self.method(arg) not without some work...