Ejemplo n.º 1
0
 public override object Visit(TextLiteral that, object value)
 {
     that.Type.Visit(this, value);
     return null;
 }
Ejemplo n.º 2
0
 public override object Visit(TextLiteral that, object value)
 {
     _writer.Write("\"" + that.Value + "\"");
     return null;
 }
Ejemplo n.º 3
0
 public override object Visit(TextLiteral that, object value)
 {
     /** \todo Fix \c Visit(TextLiteral). */
     return new ImmediateStorage("\"" + that.Value + "\"");
 }
        public override object Visit(TextLiteral that, object value = null)
        {
            PrintPrologue(that);
            PrintNodeId("Type", that.Type);
            _writer.WriteLine("Value = \"{0}\"", that.Value);
            PrintEpilogue(that);

            that.Type.Visit(this);

            return null;
        }
Ejemplo n.º 5
0
 public override object Visit(TextLiteral that, object value = null)
 {
     return null;
 }