Ejemplo n.º 1
0
 public static PasTypeDecl NeedSignedDomain(PasTypeDecl pasDomain)
 {
     ///TODO
     return null;
 }
Ejemplo n.º 2
0
 string CsTypeNameOf(PasTypeDecl pasType)
 {
     if (pasType == null)
         return null;
     if (pasType is PasStringTypeDecl)
         return "string";
     if (pasType is PasAliasTypeDecl)
         return CsTypeNameOf((pasType as PasAliasTypeDecl).TargetType);
     if (pasType is PasArrayTypeDecl)
         return CsTypeNameOf((pasType as PasArrayTypeDecl).ItemType) + "[]";
     return pasType.Name;
 }