Inheritance: CWrap
コード例 #1
0
ファイル: AttrWrapMaker.cs プロジェクト: LibreCrops/cdef
 public void VisitArr(CArr arr)
 {
     _val = " a " + arr.Len + _val;
 }
コード例 #2
0
ファイル: Decorator.cs プロジェクト: LibreCrops/cdef
 public void VisitArr(CArr arr)
 {
     _s = MaybeParen(_s) + "[" + arr.Len + "]";
 }
コード例 #3
0
ファイル: Decorator.cs プロジェクト: YSheldon/cdef
 public void VisitArr(CArr arr)
 {
     _s = MaybeParen(_s) + "[" + arr.Len + "]";
 }