forgot to add Literal.cs :) (sorry it's 6am)
authorCésar Natarén <cesar@mono-cvs.ximian.com>
Sun, 27 Jul 2003 11:25:39 +0000 (11:25 -0000)
committerCésar Natarén <cesar@mono-cvs.ximian.com>
Sun, 27 Jul 2003 11:25:39 +0000 (11:25 -0000)
svn path=/trunk/mcs/; revision=16742

mcs/class/Microsoft.JScript/Microsoft.JScript/Literal.cs [new file with mode: 0644]

diff --git a/mcs/class/Microsoft.JScript/Microsoft.JScript/Literal.cs b/mcs/class/Microsoft.JScript/Microsoft.JScript/Literal.cs
new file mode 100644 (file)
index 0000000..97ffd5f
--- /dev/null
@@ -0,0 +1,24 @@
+//
+// Literal.cs: This class groups the differents types of Literals.
+//
+// Author:
+//     Cesar Lopez Nataren (cesar@ciencias.unam.mx)
+//
+// (C) Cesar Lopez Nataren 
+//
+
+namespace Microsoft.JScript.Tmp
+{
+       using System;
+
+       public class Literal : AST
+       {
+               public Literal ()
+               {}
+
+               internal override object Visit (Visitor v, object args)
+               {
+                       return null;
+               }
+       }
+}
\ No newline at end of file