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

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

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