Example #1
0
 internal protected virtual void Walk(Maplet /*!*/ node)
 {
     if (Enter(node))
     {
         node.Key.Walk(this);
         node.Value.Walk(this);
     }
     Exit(node);
 }
Example #2
0
 public virtual void Exit(Maplet/*!*/ node) { }
Example #3
0
 public virtual bool Enter(Maplet/*!*/ node) { return true; }
Example #4
0
 public HashConstructor(Maplet/*!*/[]/*!*/ maplets, SourceSpan location)
     : base(location) {
     Assert.NotNullItems(maplets);
     _maplets = maplets;
 }
Example #5
0
 public virtual void Exit(Maplet /*!*/ node)
 {
 }
Example #6
0
 public virtual bool Enter(Maplet /*!*/ node)
 {
     return(true);
 }