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