예제 #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());
 }