2003-09-20 <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / Print.cs
1 //
2 // Print.cs: The AST representation of a print_statement.
3 //
4 // Author:
5 //      Cesar Lopez Nataren (cesar@ciencias.unam.mx)
6 //
7 // (C) 2003, Cesar Lopez Nataren
8 //
9
10 using System;
11
12 namespace Microsoft.JScript.Tmp {
13
14         public class Print : Statement {
15
16                 internal AST exp;
17
18                 public AST Exp {
19                         get { return exp; }
20                         set { exp = value; }
21                 }
22
23
24                 internal Print ()
25                 {}
26
27
28                 public override string ToString ()
29                 {
30                         return exp.ToString ();
31                 }
32         }
33 }