FSlot is the read/write fcode representation of sys::Slot.
예제 #1
0
파일: FPrinter.cs 프로젝트: syatanic/fantom
 public void slot(FSlot s)
 {
     if (s is FField)
     {
         field((FField)s);
     }
     else
     {
         method((FMethod)s);
     }
     Flush();
 }
예제 #2
0
파일: FPrinter.cs 프로젝트: nomit007/f4
 public void slot(FSlot s)
 {
     if (s is FField)
     field((FField)s);
       else
     method((FMethod)s);
       Flush();
 }