Esempio n. 1
0
 /// <summary>
 /// Visits the passthrough.
 /// </summary>
 /// <param name="passthrough">The Passthrough.</param>
 public virtual void VisitPassthrough(Passthrough passthrough)
 {
     if (passthrough == null)
     {
         return;
     }
     VisitAttributeList(passthrough.Attributes);
     _writer.WriteLine(Patterns.Block.Pass);
     _writer.WriteLine(passthrough.Text);
     _writer.WriteLine(Patterns.Block.Pass);
     _writer.WriteLine();
 }
Esempio n. 2
0
        /// <summary>
        /// Visits the Passthrough.
        /// </summary>
        /// <param name="passthrough">The Passthrough.</param>
        public virtual void VisitPassthrough(Passthrough passthrough)
        {
            if (passthrough == null)
            {
                return;
            }

            var subsAttribute = passthrough.Attributes["subs"] as NamedAttribute;

            if (subsAttribute != null)
            {
            }

            _writer.Write(passthrough.Text);
        }
Esempio n. 3
0
 /// <summary>
 /// Visits the passthrough.
 /// </summary>
 /// <param name="passthrough">The Passthrough.</param>
 public virtual void VisitPassthrough(Passthrough passthrough)
 {
     VisitAttributable(passthrough);
 }