Vladimír Gorej

Results 588 comments of Vladimír Gorej

Using https://ikatyang.github.io/tree-sitter-yaml/ to reproduce, your fixture parses as correct CST tree ``` foo: `double_quote_scalar` foo2: `single_quote_scalar` number: `single_quote_scalar` ```

> It will generate a double_quote_scalar node that has a child named escape_sequence which refers to the information inside the quotes (in this case \n)... Exactly. parser detected that `double_quote_scalar`...

Right, I understand what you're saying now. I'm not an author of this library, but I use grammar to create syntactic analyzer on top of the CST, that this grammar...

Np, just try to think of it, as if `double_quote_scalar` not having any children and `escape_sequence` doesn't exist. I use this implementation of unraw in javascript: https://www.npmjs.com/package/unraw There will be...

Hi @PatrickDekker98, Transfering this issue to swagger-codegen repo.

Hi @PatrickDekker98, I'm transferring this issue to swagger-codegen.

This issue looks related to our Java services. Seeking confirmation from the Java team. Confirmed. Moving to https://github.com/swagger-api/swagger-parser repository.

HELM should be valid YAML. I couldn't find a specific version of YAML, but I'd assume HELM is valid YAML 1.2. The problem you describing is not specific to this...

@hellerbarde np, the examples could be written as valid YAML but having @canadiannomad provide more examples that prove that HEML is not a yaml disregard my comment ;] I'm not...

Thanks I have a look. I was wondering - what's your usecase for using this library?