Andries Hiemstra
Andries Hiemstra
For the moment i'm fixing this post-deser.. which for now is fine for me Simply ignoring extensions when deserializing seems a bit drastic, so my first thought was to create...
Would be very helpfull to me also for registering classes like Request and Response for fetch api
Please also consider how to remove a custom class. E.g. when registering a custom class for a native module, e.g. import('my_native_mysql_con') i want to register custom Connection/Resultset classes but i...
Do you want unit tests in a separate mod or in comments? Personally i tend to make them in comments (give every public fn a # example section) so they...
FYI, working on a [CONTRIBUTING.md](https://github.com/HiRoFa/starlight/blob/contributing/CONTRIBUTING.md) to explain how we want tests and such Question: if we add docs to public API and such: sagudev once made me a github action...
> shall we consider moving docs from there to Rust generated docs? agreed!
never mind, it's simply that there is no dynamic module import method yet and starlight thinks i'm trying to do a static import..
figured that out thanks to https://github.com/swc-project/swc/issues/140 i'm going to try to impl a Promise class so i can transpile async functions / await statements (and impl a import function)
Does starlight also have something like a custom module_path_resolve method to resolve the absolute path of a module? and/or an actual load_module(path) method?
well, other engines like quickjs and spidermonkey leave module resolution up to the implementor of the engine and just provide two methods for loading and resolution in quickjs it's JS_SetModuleLoaderFunc...