Matt Soucy
Matt Soucy
I've never seen this form of serialization before, it's not mentioned in the docs that I've read. Do analogues exist for other first-party implementations?
It's not on my roadmap... when I started dproto the format didn't even exist. The main printing code would probably be added to the mixin in `attributes.d` similar to the...
Take a look at 76f074e, I added an implementation with some basic testing.
I have some other stuff on my plate at the moment, but it should be straightforward to add now that the framework for it is there.
Blocking on #25
Blocking on #8
I have been away from dlang for a while (basically since graduating college), but I took a look at your design and it seems like a good starting point. If...
As a temporary workaround, you could run the proto file through dprotoc and add the UDAs to the output (might want to run dfmt on it first though) The whole...
Started on the `error-lines` branch (4cca795778af442038057e17cef569bebbd50f17)... It fixes scenarios where it's being run for just the string processing, but doesn't yet handle extracting the information from CTFE exceptions.
So the reason that it displays the contents, is that it's not currently being caught so it's dumping the raw exception. I'll look into it