Exemplo n.º 1
0
        internal protected virtual void Walk(SingletonDeclaration /*!*/ node)
        {
            if (Enter(node))
            {
                if (node.QualifiedName != null)
                {
                    node.QualifiedName.Walk(this);
                }

                node.Singleton.Walk(this);

                node.Body.Walk(this);
            }
            Exit(node);
        }
Exemplo n.º 2
0
 public virtual void Exit(SingletonDeclaration/*!*/ node) { }
Exemplo n.º 3
0
 public virtual void Exit(SingletonDeclaration /*!*/ node)
 {
 }
Exemplo n.º 4
0
 public virtual bool Enter(SingletonDeclaration/*!*/ node) { return true; }
Exemplo n.º 5
0
 public virtual bool Enter(SingletonDeclaration /*!*/ node)
 {
     return(true);
 }