Skip to content
Compare
Choose a tag to compare
@goto-bus-stop goto-bus-stop released this 14 Dec 14:55
· 568 commits to main since this release
40e499f

Fixes

  • fix panics when parsing type names with syntax errors - goto-bus-stop, pull/381

    For example, field: [] does not panic anymore. Instead it produces a syntax error and an incomplete List type.

  • continue parsing after a syntax error in an object type field - goto-bus-stop, pull/381

    type A {
       fieldA: [] # ← has error, missing item type
       fieldB: Int
       fieldC: Int
    }

    Previously fieldB and fieldC would not be parsed, now they are.