Oscar Spencer
Oscar Spencer
It's not currently possible to re-export an exception in Grain as there is no syntax to do so. One might try this: test.gr ``` export exception Foo ``` test2.gr ```...
Right now the errors are just plain strings. It'd be more useful if they were exceptions we could pattern match on. Blocked on #1053
This work likely won't be done until our module system rewrite. This is what declaring foreign values would look like: ``` @externalName("wasi_unstable") foreign module WasiUnstable { @externalName("fd_write") let fdWrite: annotation...
Whether or not a request can be handled with a trailing slash is up to the user, but Vektor should handle both. For example, it's common to do something like:...
Right now, Subo just prints out the token. It would be helpful if it said something along the lines of "here is your environment token, keep it safe".
This is a bit of a fun bug I discovered while working on refactoring constructors. When an `OutOfMemory` is thrown, if any memory is allocated during the chain of exception...