Joakim Repomaa

Results 37 issues of Joakim Repomaa

Steps to reproduce: ``` crystal struct Thing include ASR::Serializable getter stuff : Hash(String, JSON::Any) end thing = ASR.serializer.deserialize Thing, %({"stuff":{"foo":"bar"}}) thing.stuff.inspect # => {} ```

kind:bug
component:serializer

When adding a field of type entries, add an "inverse of" option. Whenever an entry is linked with the entries field, check if the "inverse of" option is not null...

I'm trying to build a form object for a quite nested structure: ``` ruby class Page include Mongoid::Document embeds_many :sections end class Section include Mongoid::Document embedded_in :page embeds_many :page_modules end...

As suggested by @asterite I'm suggesting to move this repo to crystal-community so that it can be community-maintained.

See the following input strings: ``` ^r(5x6)^p(;5)^r(5x6) ^r(5x8)^p(;4)^r(5x8) ^r(5x12)^p(;2)^r(5x12) ``` All of them draw two rectangles at the same height. The y-position to achieve this (apart from leaving the positioning...

I'd really like to see method renaming across files. Say i have following ``` ruby def foo arg1, arg2 args = arg1 + arg2 puts "bar #{args}" end ``` and...

lanzaboote rev: c42edac7eb881315bb2a8dfd5190c8c87b91e084 When I run nixos-rebuild switch (or nixos-rebuild boot) the default boot entry isn't updated. I'm pretty sure this used to work. Any pointers on how to debug...

this will prevent you from doing something like ``` crystal class Foo def foobar 2 end end class Bar < Foo def foobaz # whoops a typo 3 end end...

kind:feature
topic:compiler