示例#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());
 }