2003-11-03 cesar lopez nataren <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 {
13
14         public class Print : AST {
15
16                 internal AST exp;
17
18                 public AST Exp {
19                         get { return exp; }
20                         set { exp = value; }
21                 }
22
23                 internal Print ()
24                 {}
25
26                 public override string ToString ()
27                 {
28                         return exp.ToString ();
29                 }
30
31                 internal override bool Resolve (IdentificationTable context)
32                 {
33                         throw new NotImplementedException ();
34                 }
35         }
36 }