コード例 #1
0
ファイル: Walker.cs プロジェクト: stjordanis/ironruby
 internal protected virtual void Walk(HashConstructor /*!*/ node)
 {
     if (Enter(node))
     {
         VisitList(node.Maplets);
     }
     Exit(node);
 }
コード例 #2
0
 public virtual void Exit(HashConstructor/*!*/ node) { }
コード例 #3
0
 public virtual bool Enter(HashConstructor/*!*/ node) { return true; }
コード例 #4
0
 public virtual void Exit(HashConstructor /*!*/ node)
 {
 }
コード例 #5
0
 public virtual bool Enter(HashConstructor /*!*/ node)
 {
     return(true);
 }