wtertius

Results 4 issues of wtertius

Fixes stack overflow panic when schema includes link to itself, like: ``` components: schemas: Item: type: object properties: Name: type: string ParentLink: $ref: '#/components/schemas/Item' ```

Adding support of two naming styles: * new - with initialisms like `MyHTTPHandlerForAPI` * old - with simple camel case like `MyHttpHandlerForApi` By the steps of https://github.com/deepmap/oapi-codegen/pull/715.

Adding support of three naming styles: * new - with initialisms like MyHTTPHandlerForAPI * old - with simple camel case like MyHttpHandlerForApi By the steps of https://github.com/deepmap/oapi-codegen/pull/749 but without breaking...