Matthew Lanigan
Matthew Lanigan
Actually, why does it ever do anything with class attributes and inheritance? Is there some scenario where class attributes / methods on a module become available to an inheriting class?...
Bump. Any possibility of getting this merged? The build failure, fwiw, is due to an error in the build, not something caused by this PR.
@eugeneius thanks for the feedback! I've rebased and updated the PR with your suggestions :)
I have a use case where we have several ranges which are optional, but cannot be unbounded if given. Essentially, `range: [Int!, Int!]` -- either the whole thing is null...
@williamd5 this works properly without promises: ```typescript function errors(): never { throw new Error("Error!") } function test() { errors() console.log('this is unreachable, and typescript knows it') } ``` the `throws`...
i wasn't able to find an example of how to actually accomplish what was laid out in the comment above: https://github.com/kyverno/kyverno/issues/1713#issuecomment-800705264 my first attempt involved using a JSON 6902 patch,...