예제 #1
0
 private string WithCallConv(string s, CallConv conv)
 {
     return
         object.ReferenceEquals(conv, CallConvs.Default)
         ? s
         : conv.Keyword + " " + s;
 }
예제 #2
0
파일: Decorator.cs 프로젝트: YSheldon/cdef
 private string WithCallConv(string s, CallConv conv)
 {
     return
         (object.ReferenceEquals(conv, CallConvs.Default)
         ? s
         : conv.Keyword + " " + s);
 }
예제 #3
0
 public CFunc(CType retType, CallConv callConv)
     : base(retType)
 {
     _args     = new List <CType>();
     _callConv = callConv;
 }
예제 #4
0
파일: CFunc.cs 프로젝트: LibreCrops/cdef
 public CFunc(CType retType, CallConv callConv)
     : base(retType)
 {
     _args = new List<CType>();
     _callConv = callConv;
 }