Ejemplo n.º 1
0
        protected virtual void VisitNotation(DomNotation notation)
        {
            if (notation == null)
            {
                throw new ArgumentNullException(nameof(notation));
            }

            DefaultVisit(notation);
        }
Ejemplo n.º 2
0
        protected virtual void WriteNotation(DomNotation notation)
        {
            if (notation == null)
            {
                throw new ArgumentNullException(nameof(notation));
            }

            // TODO Overloads for writing notations
        }
Ejemplo n.º 3
0
 void IDomNodeVisitor.Visit(DomNotation notation)
 {
     VisitNotation(notation);
 }
Ejemplo n.º 4
0
 void IDomNodeVisitor.Visit(DomNotation notation)
 {
     WriteNotation(notation);
 }