JP Simard
JP Simard
Sounds great, though as we discovered in jpsim/SourceKitten#211, I can't reproduce this when compiling Swift with optimizations, so it's not a pressing issue on my end.
I can't speak to the stack overflow yet, I think that's resolved. But the performance is both considerably better on Linux and considerably worse on macOS: jpsim/SourceKitten#289
Heyo! Happy to help, I've always been a fan of appledoc and even though jazzy overlaps, they can totally coexist.
It seems like other parsers also fail on the sample input you provided. [yamllint.com](http://www.yamllint.com/) experiences an internal server error when you give it that input. It also crashes when giving...
This online tool also fails: [codebeautify.org/yaml-validator](https://codebeautify.org/yaml-validator) With this input: ```yaml - &ref_0 parents: - *ref_0 ``` It produces this error: > Error : Reference "ref_0" does not exist. > Line...
I'm looking at how this javascript yaml parser added support for circular references: https://github.com/eemeli/yaml/pull/84 I'm also thinking that we'd need to change quite a few of the internals of Yams...
Interesting take. Thanks for taking charge on it. Are you planning on supporting decoding Codable types with references or would that be unsupported? It might be possible to check to...
I’m glad to hear that! I’ll happily review a PR once you’re happy with your solution.
Just out of curiosity where did you land with this @tjprescott ?
Yeah that makes sense. Let me know if you can think of a good way that Yams could offer hooks into its parsing to allow users to do this kind...