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

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

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