Fix comments and remove unneeded fields
authorteodor <teodor>
Fri, 3 Oct 2008 15:29:51 +0000 (15:29 +0000)
committerteodor <teodor>
Fri, 3 Oct 2008 15:29:51 +0000 (15:29 +0000)
template.h

index a2d7e39..9061e30 100644 (file)
@@ -217,8 +217,7 @@ typedef struct  TemplateNodeData {
                        int                                     nargs;
                        char                            *functionName;
                        executeFunctionDesc     function;
-                       GList                           *argsNode; /* list of nodes after parsing 
-                                                                                               but before compile */   
+                       GList                           *argsNode; /* list of arguments nodes */ 
                } expression;
 
                /* ConstNode */
@@ -240,8 +239,7 @@ typedef struct  TemplateNodeData {
                        char                    *varName;
                        int                     varNameLength;
                        TemplateNode    bodyNode;
-                       int                             counter;
-                       GList                   *childrenLoop;  /* to reset instance  */
+                       GList                   *childrenLoop;  /* to reset loop's instance  */
                        GList                   *listVarValues; /* list of loop variables */
                        GList                   *listInstance;
                } loop;