2003-07-27 Cesar Lopez Nataren <cesar@ciencias.unam.mx>
authorCésar Natarén <cesar@mono-cvs.ximian.com>
Sun, 27 Jul 2003 09:54:03 +0000 (09:54 -0000)
committerCésar Natarén <cesar@mono-cvs.ximian.com>
Sun, 27 Jul 2003 09:54:03 +0000 (09:54 -0000)
* Statement.cs: Forgot to include it at last commit.

svn path=/trunk/mcs/; revision=16732

mcs/class/Microsoft.JScript/Microsoft.JScript/ChangeLog
mcs/class/Microsoft.JScript/Microsoft.JScript/Statement.cs

index 14700b67878884b68a5a090ef25ae3f61ca0dccc..a707dce2175ee51ab9a0603e258d5465b3f6dc75 100644 (file)
@@ -1,3 +1,36 @@
+2003-07-27  Cesar Lopez Nataren  <cesar@ciencias.unam.mx>
+       * Statement.cs: Forgot to include it at last commit.
+
+2003-07-27  Cesar Lopez Nataren  <cesar@ciencias.unam.mx>
+       
+       * Decided to change temporarly namespace name
+       Microsoft.JScript to Microsoft.JScript.Tmp in order to be able
+       to run the code generated by our CIL code generator (on  next
+       commit will come). The problem is that we don't have the
+       runtime support for our compiler, this involve VsaEngine class
+       and its "friends", which I have not found a lot of
+       doumentation for. If someone knows a docs place for them,
+       don't hesitate to send me a email pointing to them.
+
+       * Changed from public to internal Visit function at some
+       classes.
+
+       * Package.cs: Added Name and Members fields.
+       
+       * SemanticAnalizer.cs: Added methods VisitPrint and
+       VisitStringLiteral.
+
+       * VariableDeclaration.cs: Added Type field.
+
+       * Visitor.cs: Changed from public to internal. Added
+       VisitPrint and VisitStringLiteral methods.
+
+       * VsaEngine.cs: Fixed namespace name from Microsoft.JScript to
+       Microsoft.JScript.Vsa and then to Microsoft.JScript.Vsa.Tmp.
+       
+
+
+
 2003-07-22  Cesar Lopez Nataren  <cesar@ciencias.unam.mx>
 
        * Added CmdLineError.cs and JSError.cs, last night I forgot to
index eec794614d306a86b4961b1297e8415a4c651978..2538b0b72e6ee187a8695441f31c3203e6f00a3e 100644 (file)
@@ -7,14 +7,14 @@
 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
 //
 
-namespace Microsoft.JScript
+namespace Microsoft.JScript.Tmp
 {
        public class Statement : AST
        {
                public Statement ()
                {}
 
-               public override object Visit (Visitor v, object args)
+               internal override object Visit (Visitor v, object args)
                {
                        return null;
                }