Chris Watson

Results 130 comments of Chris Watson

Please add a way to hide this. I tried with the `style:` option, but it seems as though it's not possible that way.

There could always be an option to set flags, or at least a checkbox allowing the full error output to be displayed. That way things could be kept short and...

Yeah it definitely seems like a `crystal_lib` issue now that I know more about its internals

Looks like the offending line is https://github.com/ruby/ruby/blob/v2_7_1/include/ruby/intern.h#L1108. Specifically the `union{VALUE*x;const VALUE*y;}` part. That seems to be what's breaking things.

I mostly figured out the root cause of the issue. After modifying that union to be `union point` instead of an anonymous union the code was generated successfully, with [this...

A small reproducible example would be awesome for the spec. I got a PR in to fix the problem, but they want a small test.

You’re the best! Thanks!

Yeah I'll be sure to ask. Tbh I wouldn't mind an option that allows you to import everything. Zig does this right now with their `translate-c` and it's ugly, but...

Awesome thanks!

Just attempting to generate code from this ```c typedef struct pkcs7_signed_st { ASN1_INTEGER *version; /* version 1 */ STACK_OF(X509_ALGOR) *md_algs; /* md used */ STACK_OF(X509) *cert; /* [ 0 ]...