Пример #1
0
 public override bool CanHaveConstructors(ITypeDeclaration typeElement)
 => !typeElement.IsSynthetic();
Пример #2
0
 public override bool HasUglyName(ITypeDeclaration declaration)
 => declaration.IsSynthetic();
Пример #3
0
 public override bool HasUglyName(ITypeDeclaration declaration)
 {
     return(declaration.IsSynthetic());
 }
Пример #4
0
 public override bool CanImplementInterfaces(ITypeDeclaration typeElement)
 => !typeElement.IsSynthetic();
Пример #5
0
 public override bool HasUglyName(ITypeDeclaration declaration)
 {
     return declaration.IsSynthetic();
 }
Пример #6
0
 public override bool CanImplementInterfaces(ITypeDeclaration typeElement)
 {
     return !typeElement.IsSynthetic();
 }
Пример #7
0
 public override bool CanHaveConstructors(ITypeDeclaration typeElement)
 {
     return !typeElement.IsSynthetic();
 }
Пример #8
0
 public override bool SuperClassCanBeChanged(ITypeDeclaration typeElement)
 {
     // TODO: handle template inherits attribute
     return !typeElement.IsSynthetic();
 }
Пример #9
0
 public override bool SuperClassCanBeChanged(ITypeDeclaration typeElement)
 {
     // TODO: handle template inherits attribute
     return(!typeElement.IsSynthetic());
 }