protected virtual void VisitNotation(DomNotation notation)
        {
            if (notation == null)
            {
                throw new ArgumentNullException(nameof(notation));
            }

            DefaultVisit(notation);
        }
Exemple #2
0
        protected virtual void WriteNotation(DomNotation notation)
        {
            if (notation == null)
            {
                throw new ArgumentNullException(nameof(notation));
            }

            // TODO Overloads for writing notations
        }
 void IDomNodeVisitor.Visit(DomNotation notation)
 {
     VisitNotation(notation);
 }
Exemple #4
0
 void IDomNodeVisitor.Visit(DomNotation notation)
 {
     WriteNotation(notation);
 }