コード例 #1
0
 public static SLAttribute Escaping()
 {
     if (escaping == null)
     {
         escaping = new SLAttribute("escaping");
     }
     return(escaping);
 }
コード例 #2
0
 public static SLAttribute ObjC()
 {
     if (objc == null)
     {
         objc = new SLAttribute("objc");
     }
     return(objc);
 }
コード例 #3
0
 public static SLAttribute ConventionC()
 {
     if (convc == null)
     {
         convc = new SLAttribute("convention", new CommaListElementCollection <SLBaseExpr> ()
         {
             new SLIdentifier("c")
         });
     }
     return(convc);
 }