Skip to content

Nested types in inheritance are not converted properly #137

Description

@paulirwin

If you're converting a type that inherits/extends nested types, the declaring type is left off of the conversion.

Example input:

public class CachedFeatureGeneratorFactory
    extends GeneratorFactory.AbstractXmlFeatureGeneratorFactory
    implements GeneratorFactory.XmlFeatureGeneratorFactory {

Current output:

public class CachedFeatureGeneratorFactory : AbstractXmlFeatureGeneratorFactory, XmlFeatureGeneratorFactory

Expected output:

public class CachedFeatureGeneratorFactory : GeneratorFactory.AbstractXmlFeatureGeneratorFactory, GeneratorFactory.XmlFeatureGeneratorFactory

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions