Connor Wood

Results 10 comments of Connor Wood

On the same subject, it would be nice to have a way of converting an oid to a string (similar to the hash that's queryable in the database itself), rather...

This may be of use to people: https://github.com/orthecreedence/cl-mongo-id Not sure if this qualifies as a quick-fix, or a permanent solution, but seems to work well enough.

Since I don't know the status of this, I decided to start an alternate implementation. Still very much a WIP, but hello world now successfully compiles to this: ```rust //...

Oh wow, that all looks much easier than I'd anticipated! Is there any documentation on generating and running the tests for a given language automatically? Tried to figure it out...

So, I've got the translator outputting tests now. Few compilation issues here and there due to incorrect syntax, nothing too extreme. Next question: how exactly does one run the compiler...

Okay, where we're at (I'll be pushing all this shortly, soon as I've got a couple compiler errors ironed out), I've got a rust library project under `spec/rust`. Inside of...

Okay, that makes a little more sense now. To be explicit, for the first point, I was referring to ksc - I need to run ksc in order to generate...

As a progress update on the above, I used Cargo's build script facilities to automatically copy over everything from `compiled/rust` into `spec/rust/src`. It first clears the `src` directory. Then, one...

Okay, now we have a major issue. Because of the way Kaitai works, it expects structs/types/classes/whatever you want to call them, to be nested. Becuase of the way Rust works,...

Is there a way I can get it to output fields before methods? Because of the way Rust works, it needs ``` struct Foo { // fields } impl KaitaiStruct...