Пример #1
0
 public override object Visit(TextLiteral that, object value)
 {
     that.Type.Visit(this, value);
     return null;
 }
Пример #2
0
 public override object Visit(TextLiteral that, object value)
 {
     _writer.Write("\"" + that.Value + "\"");
     return null;
 }
Пример #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;
        }
Пример #5
0
 public override object Visit(TextLiteral that, object value = null)
 {
     return null;
 }