public override bool CanHaveConstructors(ITypeDeclaration typeElement) => !typeElement.IsSynthetic();
public override bool HasUglyName(ITypeDeclaration declaration) => declaration.IsSynthetic();
public override bool HasUglyName(ITypeDeclaration declaration) { return(declaration.IsSynthetic()); }
public override bool CanImplementInterfaces(ITypeDeclaration typeElement) => !typeElement.IsSynthetic();
public override bool HasUglyName(ITypeDeclaration declaration) { return declaration.IsSynthetic(); }
public override bool CanImplementInterfaces(ITypeDeclaration typeElement) { return !typeElement.IsSynthetic(); }
public override bool CanHaveConstructors(ITypeDeclaration typeElement) { return !typeElement.IsSynthetic(); }
public override bool SuperClassCanBeChanged(ITypeDeclaration typeElement) { // TODO: handle template inherits attribute return !typeElement.IsSynthetic(); }
public override bool SuperClassCanBeChanged(ITypeDeclaration typeElement) { // TODO: handle template inherits attribute return(!typeElement.IsSynthetic()); }