]> git.draconx.ca Git - gob-dx.git/blobdiff - src/parse.c
Release 0.90.5
[gob-dx.git] / src / parse.c
index 665f536185b5494df4121b5b9894456717010f33..231684732d9c361d8efe8ffff2312033636ce2a7 100644 (file)
@@ -1,38 +1,37 @@
 
 /*  A Bison parser, made from parse.y
- by  GNU Bison version 1.25
-  */
+    by GNU Bison version 1.28  */
 
 #define YYBISON 1  /* Identify Bison output.  */
 
-#define        CLASS   258
-#define        FROM    259
-#define        CONST   260
-#define        VOID    261
-#define        STRUCT  262
-#define        UNION   263
-#define        ENUM    264
-#define        THREEDOTS       265
-#define        SIGNED  266
-#define        UNSIGNED        267
-#define        LONG    268
-#define        SHORT   269
-#define        INT     270
-#define        FLOAT   271
-#define        DOUBLE  272
-#define        CHAR    273
-#define        ONERROR 274
-#define        TOKEN   275
-#define        NUMBER  276
-#define        TYPETOKEN       277
-#define        CCODE   278
-#define        HCODE   279
-#define        PUBLIC  280
-#define        PRIVATE 281
-#define        ARGUMENT        282
-#define        VIRTUAL 283
-#define        SIGNAL  284
-#define        OVERRIDE        285
+#define        CLASS   257
+#define        FROM    258
+#define        CONST   259
+#define        VOID    260
+#define        STRUCT  261
+#define        UNION   262
+#define        ENUM    263
+#define        THREEDOTS       264
+#define        SIGNED  265
+#define        UNSIGNED        266
+#define        LONG    267
+#define        SHORT   268
+#define        INT     269
+#define        FLOAT   270
+#define        DOUBLE  271
+#define        CHAR    272
+#define        ONERROR 273
+#define        TOKEN   274
+#define        NUMBER  275
+#define        TYPETOKEN       276
+#define        CCODE   277
+#define        HCODE   278
+#define        PUBLIC  279
+#define        PRIVATE 280
+#define        ARGUMENT        281
+#define        VIRTUAL 282
+#define        SIGNAL  283
+#define        OVERRIDE        284
 
 #line 21 "parse.y"
 
@@ -121,6 +120,20 @@ push_function(int scope, char *oid, char *id, char *onerror,
                type = (Type *)new_type(0,g_strdup("void"));
        }
        
+       /* a complicated and ugly test to figure out if we have
+          the wrong number of types for a signal */
+       if((scope == SIGNAL_FIRST_METHOD ||
+           scope == SIGNAL_LAST_METHOD ||
+           scope == PRIVATE_SIGNAL_FIRST_METHOD ||
+           scope == PRIVATE_SIGNAL_LAST_METHOD) &&
+          g_list_length(gtktypes) != g_list_length(funcargs) &&
+          !(g_list_length(funcargs) == 1 &&
+            g_list_length(gtktypes) == 2 &&
+            strcmp(gtktypes->next->data,"NONE")==0)) {
+               print_error(TRUE, _("The number of GTK arguments and "
+                                   "function arguments for a signal "
+                                   "don't seem to match"),line_no);
+       }
        node = new_method(scope,type,oid,gtktypes,id,funcargs,
                          onerror,cbuf,line_no,ccode_line,vararg);
        gtktypes = NULL;
@@ -173,7 +186,7 @@ push_self(char *id)
 }
 
 
-#line 160 "parse.y"
+#line 174 "parse.y"
 typedef union {
        char *id;
        GString *cbuf;
@@ -199,7 +212,7 @@ typedef union {
 #define        YYFLAG          -32768
 #define        YYNTBASE        45
 
-#define YYTRANSLATE(x) ((unsigned)(x) <= 285 ? yytranslate[x] : 73)
+#define YYTRANSLATE(x) ((unsigned)(x) <= 284 ? yytranslate[x] : 73)
 
 static const char yytranslate[] = {     0,
      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
@@ -227,10 +240,10 @@ static const char yytranslate[] = {     0,
      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
      2,     2,     2,     2,     2,     2,     2,     2,     2,     2,
-     2,     2,     2,     2,     2,     1,     2,     3,     4,     5,
-     6,     7,     8,     9,    10,    11,    12,    13,    14,    15,
-    16,    17,    18,    19,    20,    21,    22,    23,    24,    25,
-    26,    27,    28,    29,    30
+     2,     2,     2,     2,     2,     1,     3,     4,     5,     6,
+     7,     8,     9,    10,    11,    12,    13,    14,    15,    16,
+    17,    18,    19,    20,    21,    22,    23,    24,    25,    26,
+    27,    28,    29,    30
 };
 
 #if YYDEBUG != 0
@@ -287,16 +300,16 @@ static const short yyrhs[] = {    46,
 
 #if YYDEBUG != 0
 static const short yyrline[] = { 0,
-   179,   180,   181,   182,   185,   189,   193,   197,   203,   210,
-   215,   216,   217,   218,   219,   220,   223,   226,   230,   259,
-   285,   286,   289,   292,   298,   299,   307,   311,   318,   321,
-   324,   327,   330,   333,   336,   339,   342,   345,   349,   352,
-   357,   360,   363,   366,   369,   374,   377,   380,   385,   386,
-   389,   401,   413,   416,   428,   433,   438,   441,   446,   447,
-   451,   461,   471,   481,   487,   492,   497,   518,   519,   523,
-   524,   527,   528,   544,   559,   562,   563,   566,   567,   570,
-   573,   583,   584,   587,   600,   604,   608,   612,   616,   620,
-   626,   627,   631
+   193,   194,   195,   196,   199,   203,   207,   211,   217,   224,
+   229,   230,   231,   232,   233,   234,   237,   240,   244,   273,
+   299,   300,   303,   306,   312,   313,   321,   325,   332,   335,
+   338,   341,   344,   347,   350,   353,   356,   359,   363,   366,
+   371,   374,   377,   380,   383,   388,   391,   394,   399,   400,
+   403,   415,   427,   430,   442,   447,   452,   455,   460,   461,
+   465,   475,   485,   495,   501,   506,   511,   532,   533,   537,
+   538,   541,   542,   553,   563,   566,   567,   570,   571,   574,
+   577,   587,   588,   591,   604,   608,   612,   616,   620,   624,
+   630,   631,   635
 };
 #endif
 
@@ -464,6 +477,7 @@ static const short yycheck[] = {    16,
 };
 /* -*-C-*-  Note some compilers choke on comments on `#line' lines.  */
 #line 3 "/usr/lib/bison.simple"
+/* This file comes from bison-1.28.  */
 
 /* Skeleton output parser for bison,
    Copyright (C) 1984, 1989, 1990 Free Software Foundation, Inc.
@@ -480,46 +494,66 @@ static const short yycheck[] = {    16,
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
+   Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
 
 /* As a special exception, when this file is copied by Bison into a
    Bison output file, you may use that output file without restriction.
    This special exception was added by the Free Software Foundation
    in version 1.24 of Bison.  */
 
-#ifndef alloca
+/* This is the parser code that is written into each bison parser
+  when the %semantic_parser declaration is not specified in the grammar.
+  It was written by Richard Stallman by simplifying the hairy parser
+  used when %semantic_parser is specified.  */
+
+#ifndef YYSTACK_USE_ALLOCA
+#ifdef alloca
+#define YYSTACK_USE_ALLOCA
+#else /* alloca not defined */
 #ifdef __GNUC__
+#define YYSTACK_USE_ALLOCA
 #define alloca __builtin_alloca
 #else /* not GNU C.  */
-#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi)
+#if (!defined (__STDC__) && defined (sparc)) || defined (__sparc__) || defined (__sparc) || defined (__sgi) || (defined (__sun) && defined (__i386))
+#define YYSTACK_USE_ALLOCA
 #include <alloca.h>
 #else /* not sparc */
-#if defined (MSDOS) && !defined (__TURBOC__)
+/* We think this test detects Watcom and Microsoft C.  */
+/* This used to test MSDOS, but that is a bad idea
+   since that symbol is in the user namespace.  */
+#if (defined (_MSDOS) || defined (_MSDOS_)) && !defined (__TURBOC__)
+#if 0 /* No need for malloc.h, which pollutes the namespace;
+        instead, just don't use alloca.  */
 #include <malloc.h>
+#endif
 #else /* not MSDOS, or __TURBOC__ */
 #if defined(_AIX)
-#include <malloc.h>
+/* I don't know what this was needed for, but it pollutes the namespace.
+   So I turned it off.   rms, 2 May 1997.  */
+/* #include <malloc.h>  */
  #pragma alloca
-#else /* not MSDOS, __TURBOC__, or _AIX */
-#ifdef __hpux
-#ifdef __cplusplus
-extern "C" {
-void *alloca (unsigned int);
-};
-#else /* not __cplusplus */
-void *alloca ();
-#endif /* not __cplusplus */
+#define YYSTACK_USE_ALLOCA
+#else /* not MSDOS, or __TURBOC__, or _AIX */
+#if 0
+#ifdef __hpux /* haible@ilog.fr says this works for HPUX 9.05 and up,
+                and on HPUX 10.  Eventually we can turn this on.  */
+#define YYSTACK_USE_ALLOCA
+#define alloca __builtin_alloca
 #endif /* __hpux */
+#endif
 #endif /* not _AIX */
 #endif /* not MSDOS, or __TURBOC__ */
-#endif /* not sparc.  */
-#endif /* not GNU C.  */
-#endif /* alloca not defined.  */
+#endif /* not sparc */
+#endif /* not GNU C */
+#endif /* alloca not defined */
+#endif /* YYSTACK_USE_ALLOCA not defined */
 
-/* This is the parser code that is written into each bison parser
-  when the %semantic_parser declaration is not specified in the grammar.
-  It was written by Richard Stallman by simplifying the hairy parser
-  used when %semantic_parser is specified.  */
+#ifdef YYSTACK_USE_ALLOCA
+#define YYSTACK_ALLOC alloca
+#else
+#define YYSTACK_ALLOC malloc
+#endif
 
 /* Note: there must be only one dollar sign in this file.
    It is replaced by the list of actions, each action
@@ -529,8 +563,8 @@ void *alloca ();
 #define yyclearin      (yychar = YYEMPTY)
 #define YYEMPTY                -2
 #define YYEOF          0
-#define YYACCEPT       return(0)
-#define YYABORT        return(1)
+#define YYACCEPT       goto yyacceptlab
+#define YYABORT        goto yyabortlab
 #define YYERROR                goto yyerrlab1
 /* Like YYERROR except do call yyerror.
    This remains here temporarily to ease the
@@ -611,12 +645,12 @@ int yydebug;                      /*  nonzero means print parse trace     */
 #ifndef YYMAXDEPTH
 #define YYMAXDEPTH 10000
 #endif
-
-/* Prevent warning if -Wstrict-prototypes.  */
-#ifdef __GNUC__
-int yyparse (void);
-#endif
 \f
+/* Define __yy_memcpy.  Note that the size argument
+   should be passed with type unsigned int, because that is what the non-GCC
+   definitions require.  With GCC, __builtin_memcpy takes an arg
+   of type size_t, but it can handle unsigned int.  */
+
 #if __GNUC__ > 1               /* GNU C and GNU C++ define this.  */
 #define __yy_memcpy(TO,FROM,COUNT)     __builtin_memcpy(TO,FROM,COUNT)
 #else                          /* not GNU C or C++ */
@@ -628,7 +662,7 @@ static void
 __yy_memcpy (to, from, count)
      char *to;
      char *from;
-     int count;
+     unsigned int count;
 {
   register char *f = from;
   register char *t = to;
@@ -643,10 +677,10 @@ __yy_memcpy (to, from, count)
 /* This is the most reliable way to avoid incompatibilities
    in available built-in functions on various systems.  */
 static void
-__yy_memcpy (char *to, char *from, int count)
+__yy_memcpy (char *to, char *from, unsigned int count)
 {
-  register char *f = from;
   register char *t = to;
+  register char *f = from;
   register int i = count;
 
   while (i-- > 0)
@@ -656,7 +690,7 @@ __yy_memcpy (char *to, char *from, int count)
 #endif
 #endif
 \f
-#line 196 "/usr/lib/bison.simple"
+#line 217 "/usr/lib/bison.simple"
 
 /* The user can define YYPARSE_PARAM as the name of an argument to be passed
    into yyparse.  The argument should have type void *.
@@ -677,6 +711,15 @@ __yy_memcpy (char *to, char *from, int count)
 #define YYPARSE_PARAM_DECL
 #endif /* not YYPARSE_PARAM */
 
+/* Prevent warning if -Wstrict-prototypes.  */
+#ifdef __GNUC__
+#ifdef YYPARSE_PARAM
+int yyparse (void *);
+#else
+int yyparse (void);
+#endif
+#endif
+
 int
 yyparse(YYPARSE_PARAM_ARG)
      YYPARSE_PARAM_DECL
@@ -705,6 +748,7 @@ yyparse(YYPARSE_PARAM_ARG)
 #endif
 
   int yystacksize = YYINITDEPTH;
+  int yyfree_stacks = 0;
 
 #ifdef YYPURE
   int yychar;
@@ -789,18 +833,32 @@ yynewstate:
       if (yystacksize >= YYMAXDEPTH)
        {
          yyerror("parser stack overflow");
+         if (yyfree_stacks)
+           {
+             free (yyss);
+             free (yyvs);
+#ifdef YYLSP_NEEDED
+             free (yyls);
+#endif
+           }
          return 2;
        }
       yystacksize *= 2;
       if (yystacksize > YYMAXDEPTH)
        yystacksize = YYMAXDEPTH;
-      yyss = (short *) alloca (yystacksize * sizeof (*yyssp));
-      __yy_memcpy ((char *)yyss, (char *)yyss1, size * sizeof (*yyssp));
-      yyvs = (YYSTYPE *) alloca (yystacksize * sizeof (*yyvsp));
-      __yy_memcpy ((char *)yyvs, (char *)yyvs1, size * sizeof (*yyvsp));
+#ifndef YYSTACK_USE_ALLOCA
+      yyfree_stacks = 1;
+#endif
+      yyss = (short *) YYSTACK_ALLOC (yystacksize * sizeof (*yyssp));
+      __yy_memcpy ((char *)yyss, (char *)yyss1,
+                  size * (unsigned int) sizeof (*yyssp));
+      yyvs = (YYSTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yyvsp));
+      __yy_memcpy ((char *)yyvs, (char *)yyvs1,
+                  size * (unsigned int) sizeof (*yyvsp));
 #ifdef YYLSP_NEEDED
-      yyls = (YYLTYPE *) alloca (yystacksize * sizeof (*yylsp));
-      __yy_memcpy ((char *)yyls, (char *)yyls1, size * sizeof (*yylsp));
+      yyls = (YYLTYPE *) YYSTACK_ALLOC (yystacksize * sizeof (*yylsp));
+      __yy_memcpy ((char *)yyls, (char *)yyls1,
+                  size * (unsigned int) sizeof (*yylsp));
 #endif
 #endif /* no yyoverflow */
 
@@ -961,51 +1019,51 @@ yyreduce:
   switch (yyn) {
 
 case 1:
-#line 179 "parse.y"
+#line 193 "parse.y"
 { ; ;
     break;}
 case 2:
-#line 180 "parse.y"
+#line 194 "parse.y"
 { ; ;
     break;}
 case 3:
-#line 181 "parse.y"
+#line 195 "parse.y"
 { ; ;
     break;}
 case 4:
-#line 182 "parse.y"
+#line 196 "parse.y"
 { ; ;
     break;}
 case 5:
-#line 185 "parse.y"
+#line 199 "parse.y"
 {
                        Node *node = new_ccode(FALSE,yyvsp[0].cbuf,ccode_line);
                        nodes = g_list_append(nodes,node);
                                        ;
     break;}
 case 6:
-#line 189 "parse.y"
+#line 203 "parse.y"
 {
                        Node *node = new_ccode(TRUE,yyvsp[0].cbuf,ccode_line);
                        nodes = g_list_append(nodes,node);
                                        ;
     break;}
 case 7:
-#line 193 "parse.y"
+#line 207 "parse.y"
 {
                        Node *node = new_ccode(FALSE,yyvsp[0].cbuf,ccode_line);
                        nodes = g_list_append(nodes,node);
                                        ;
     break;}
 case 8:
-#line 197 "parse.y"
+#line 211 "parse.y"
 {
                        Node *node = new_ccode(TRUE,yyvsp[0].cbuf,ccode_line);
                        nodes = g_list_append(nodes,node);
                                        ;
     break;}
 case 9:
-#line 203 "parse.y"
+#line 217 "parse.y"
 {
                        ((Class *)class)->nodes = class_nodes;
                        class_nodes = NULL;
@@ -1013,49 +1071,49 @@ case 9:
                                                ;
     break;}
 case 10:
-#line 210 "parse.y"
+#line 224 "parse.y"
 {
                        class = new_class(yyvsp[-2].id,yyvsp[0].id,NULL);
                                                ;
     break;}
 case 11:
-#line 215 "parse.y"
+#line 229 "parse.y"
 { ; ;
     break;}
 case 12:
-#line 216 "parse.y"
+#line 230 "parse.y"
 { ; ;
     break;}
 case 13:
-#line 217 "parse.y"
+#line 231 "parse.y"
 { ; ;
     break;}
 case 14:
-#line 218 "parse.y"
+#line 232 "parse.y"
 { ; ;
     break;}
 case 15:
-#line 219 "parse.y"
+#line 233 "parse.y"
 { ; ;
     break;}
 case 16:
-#line 220 "parse.y"
+#line 234 "parse.y"
 { ; ;
     break;}
 case 17:
-#line 223 "parse.y"
+#line 237 "parse.y"
 {
                        push_variable(yyvsp[-1].id,PUBLIC_SCOPE,yyvsp[-3].line);
                                                ;
     break;}
 case 18:
-#line 226 "parse.y"
+#line 240 "parse.y"
 {
                        push_variable(yyvsp[-1].id,PRIVATE_SCOPE,yyvsp[-3].line);
                                                ;
     break;}
 case 19:
-#line 230 "parse.y"
+#line 244 "parse.y"
 {
                        if(strcmp(yyvsp[-6].id,"get")==0 &&
                           strcmp(yyvsp[-3].id,"set")==0) {
@@ -1087,7 +1145,7 @@ case 19:
                                                ;
     break;}
 case 20:
-#line 259 "parse.y"
+#line 273 "parse.y"
 {
                        if(strcmp(yyvsp[-3].id,"get")==0) {
                                Node *node;
@@ -1114,31 +1172,31 @@ case 20:
                                                ;
     break;}
 case 21:
-#line 285 "parse.y"
+#line 299 "parse.y"
 { yyval.list = yyvsp[-1].list; ;
     break;}
 case 22:
-#line 286 "parse.y"
+#line 300 "parse.y"
 { yyval.list = NULL; ;
     break;}
 case 23:
-#line 289 "parse.y"
+#line 303 "parse.y"
 {
                        yyval.list = g_list_append(yyvsp[0].list,yyvsp[-2].id);
                                                ;
     break;}
 case 24:
-#line 292 "parse.y"
+#line 306 "parse.y"
 {
                        yyval.list = g_list_append(NULL,yyvsp[0].id);
                                                ;
     break;}
 case 25:
-#line 298 "parse.y"
+#line 312 "parse.y"
 { ; ;
     break;}
 case 26:
-#line 299 "parse.y"
+#line 313 "parse.y"
 {
                        Type *type = typestack->data;
                        char *oldname = type->name;
@@ -1147,14 +1205,14 @@ case 26:
                                                ;
     break;}
 case 27:
-#line 307 "parse.y"
+#line 321 "parse.y"
 {
                        Node *node = new_type(0,yyvsp[0].id);
                        typestack = g_list_prepend(typestack,node);
                                                ;
     break;}
 case 28:
-#line 311 "parse.y"
+#line 325 "parse.y"
 {
                        Node *node = new_type(stars,yyvsp[-1].id);
                        stars = 0;
@@ -1162,136 +1220,136 @@ case 28:
                                                ;
     break;}
 case 29:
-#line 318 "parse.y"
+#line 332 "parse.y"
 {
                        yyval.id = g_strconcat("unsigned ",yyvsp[0].id,NULL);
                                                ;
     break;}
 case 30:
-#line 321 "parse.y"
+#line 335 "parse.y"
 {
                        yyval.id = g_strconcat("signed ",yyvsp[0].id,NULL);
                                                ;
     break;}
 case 31:
-#line 324 "parse.y"
+#line 338 "parse.y"
 {
                        yyval.id = g_strdup(yyvsp[0].id);
                                                ;
     break;}
 case 32:
-#line 327 "parse.y"
+#line 341 "parse.y"
 {
                        yyval.id = g_strdup("unsigned char");
                                                ;
     break;}
 case 33:
-#line 330 "parse.y"
+#line 344 "parse.y"
 {
                        yyval.id = g_strdup("signed char");
                                                ;
     break;}
 case 34:
-#line 333 "parse.y"
+#line 347 "parse.y"
 {
                        yyval.id = g_strdup("char");
                                                ;
     break;}
 case 35:
-#line 336 "parse.y"
+#line 350 "parse.y"
 {
                        yyval.id = g_strdup("double");
                                                ;
     break;}
 case 36:
-#line 339 "parse.y"
+#line 353 "parse.y"
 {
                        yyval.id = g_strdup("float");
                                                ;
     break;}
 case 37:
-#line 342 "parse.y"
+#line 356 "parse.y"
 {
                        yyval.id = yyvsp[0].id;
                                                ;
     break;}
 case 38:
-#line 345 "parse.y"
+#line 359 "parse.y"
 {
                        yyval.id = g_strconcat(yyvsp[-1].id,yyvsp[0].id,NULL);
                        g_free(yyvsp[0].id);
                                                ;
     break;}
 case 39:
-#line 349 "parse.y"
+#line 363 "parse.y"
 {
                        yyval.id = yyvsp[0].id;
                                                ;
     break;}
 case 40:
-#line 352 "parse.y"
+#line 366 "parse.y"
 {
                        yyval.id = g_strdup("void");
                                                ;
     break;}
 case 41:
-#line 357 "parse.y"
+#line 371 "parse.y"
 {
                        yyval.id = "long int";
                                                ;
     break;}
 case 42:
-#line 360 "parse.y"
+#line 374 "parse.y"
 {
                        yyval.id = "long";
                                                ;
     break;}
 case 43:
-#line 363 "parse.y"
+#line 377 "parse.y"
 {
                        yyval.id = "short int";
                                                ;
     break;}
 case 44:
-#line 366 "parse.y"
+#line 380 "parse.y"
 {
                        yyval.id = "short";
                                                ;
     break;}
 case 45:
-#line 369 "parse.y"
+#line 383 "parse.y"
 {
                        yyval.id = "int";
                                                ;
     break;}
 case 46:
-#line 374 "parse.y"
+#line 388 "parse.y"
 {
                        yyval.id = "enum ";
                                                ;
     break;}
 case 47:
-#line 377 "parse.y"
+#line 391 "parse.y"
 {
                        yyval.id = "union ";
                                                ;
     break;}
 case 48:
-#line 380 "parse.y"
+#line 394 "parse.y"
 {
                        yyval.id = "struct ";
                                                ;
     break;}
 case 49:
-#line 385 "parse.y"
+#line 399 "parse.y"
 { stars++; ;
     break;}
 case 50:
-#line 386 "parse.y"
+#line 400 "parse.y"
 { stars++; ;
     break;}
 case 51:
-#line 389 "parse.y"
+#line 403 "parse.y"
 {
                        if(strcmp(yyvsp[-1].id,"first")==0)
                                yyval.sigtype = PRIVATE_SIGNAL_FIRST_METHOD;
@@ -1306,7 +1364,7 @@ case 51:
                                        ;
     break;}
 case 52:
-#line 401 "parse.y"
+#line 415 "parse.y"
 {
                        if(strcmp(yyvsp[-2].id,"first")==0)
                                yyval.sigtype = PRIVATE_SIGNAL_FIRST_METHOD;
@@ -1321,13 +1379,13 @@ case 52:
                                        ;
     break;}
 case 53:
-#line 413 "parse.y"
+#line 427 "parse.y"
 {
                        yyval.sigtype = PRIVATE_SIGNAL_LAST_METHOD;
                                        ;
     break;}
 case 54:
-#line 416 "parse.y"
+#line 430 "parse.y"
 {
                        if(strcmp(yyvsp[-1].id,"first")==0)
                                yyval.sigtype = SIGNAL_FIRST_METHOD;
@@ -1342,39 +1400,39 @@ case 54:
                                        ;
     break;}
 case 55:
-#line 428 "parse.y"
+#line 442 "parse.y"
 {
                        yyval.sigtype = SIGNAL_LAST_METHOD;
                                        ;
     break;}
 case 56:
-#line 433 "parse.y"
+#line 447 "parse.y"
 {
                        gtktypes = g_list_prepend(gtktypes,yyvsp[-3].id);
                                                ;
     break;}
 case 57:
-#line 438 "parse.y"
+#line 452 "parse.y"
 {
                        gtktypes = g_list_append(gtktypes,yyvsp[0].id);
                                                ;
     break;}
 case 58:
-#line 441 "parse.y"
+#line 455 "parse.y"
 { 
                        gtktypes = g_list_append(gtktypes,yyvsp[0].id);
                                                        ;
     break;}
 case 59:
-#line 446 "parse.y"
+#line 460 "parse.y"
 { yyval.cbuf=yyvsp[0].cbuf; ;
     break;}
 case 60:
-#line 447 "parse.y"
+#line 461 "parse.y"
 { yyval.cbuf = NULL; ;
     break;}
 case 61:
-#line 451 "parse.y"
+#line 465 "parse.y"
 {
                        if(!has_self) {
                                yyerror(_("signal without 'self' as "
@@ -1387,7 +1445,7 @@ case 61:
                                                                        ;
     break;}
 case 62:
-#line 461 "parse.y"
+#line 475 "parse.y"
 {
                        if(!has_self) {
                                yyerror(_("virtual method without 'self' as "
@@ -1400,7 +1458,7 @@ case 62:
                                                                        ;
     break;}
 case 63:
-#line 471 "parse.y"
+#line 485 "parse.y"
 {
                        if(!has_self) {
                                yyerror(_("virtual method without 'self' as "
@@ -1413,7 +1471,7 @@ case 63:
                                                                        ;
     break;}
 case 64:
-#line 481 "parse.y"
+#line 495 "parse.y"
 {
                        push_function(OVERRIDE_METHOD, yyvsp[-9].id,
                                      yyvsp[-6].id, yyvsp[-2].id, yyvsp[0].cbuf,
@@ -1422,7 +1480,7 @@ case 64:
                                                                        ;
     break;}
 case 65:
-#line 487 "parse.y"
+#line 501 "parse.y"
 {
                        push_function(PUBLIC_SCOPE, NULL, yyvsp[-6].id,
                                      yyvsp[-2].id, yyvsp[0].cbuf,yyvsp[-8].line,yyvsp[-1].line,
@@ -1430,7 +1488,7 @@ case 65:
                                                                ;
     break;}
 case 66:
-#line 492 "parse.y"
+#line 506 "parse.y"
 {
                        push_function(PRIVATE_SCOPE, NULL, yyvsp[-6].id,
                                      yyvsp[-2].id, yyvsp[0].cbuf,yyvsp[-8].line,yyvsp[-1].line,
@@ -1438,7 +1496,7 @@ case 66:
                                                                ;
     break;}
 case 67:
-#line 497 "parse.y"
+#line 511 "parse.y"
 {
                        if(strcmp(yyvsp[-4].id,"init")==0) {
                                push_init_arg(yyvsp[-2].id,FALSE);
@@ -1460,39 +1518,34 @@ case 67:
                                                ;
     break;}
 case 68:
-#line 518 "parse.y"
+#line 532 "parse.y"
 { yyval.id = yyvsp[0].id; ;
     break;}
 case 69:
-#line 519 "parse.y"
+#line 533 "parse.y"
 {
                        yyval.id = (yyvsp[0].cbuf)->str;
                        g_string_free(yyvsp[0].cbuf,FALSE);
                                        ;
     break;}
 case 70:
-#line 523 "parse.y"
+#line 537 "parse.y"
 { ; ;
     break;}
 case 71:
-#line 524 "parse.y"
+#line 538 "parse.y"
 { yyval.id = NULL; ;
     break;}
 case 72:
-#line 527 "parse.y"
+#line 541 "parse.y"
 { vararg = FALSE; has_self = FALSE; ;
     break;}
 case 73:
-#line 528 "parse.y"
+#line 542 "parse.y"
 {
                        vararg = FALSE;
                        has_self = TRUE;
-                       if(strcmp(yyvsp[0].id,"this")==0) {
-                               push_self(yyvsp[0].id);
-                               print_error(TRUE,_("Use of 'this' is "
-                                                  "depreciated, use 'self' "
-                                                  "instead"),line_no);
-                       } else if(strcmp(yyvsp[0].id,"self")==0)
+                       if(strcmp(yyvsp[0].id,"self")==0)
                                push_self(yyvsp[0].id);
                        else {
                                g_free(yyvsp[0].id);
@@ -1502,15 +1555,10 @@ case 73:
                                                ;
     break;}
 case 74:
-#line 544 "parse.y"
+#line 553 "parse.y"
 {
                        has_self = TRUE;
-                       if(strcmp(yyvsp[-2].id,"this")==0) {
-                               push_self(yyvsp[-2].id);
-                               print_error(TRUE,_("Use of 'this' is "
-                                                  "depreciated, use 'self' "
-                                                  "instead"),line_no);
-                       } else if(strcmp(yyvsp[-2].id,"self")==0)
+                       if(strcmp(yyvsp[-2].id,"self")==0)
                                push_self(yyvsp[-2].id);
                        else {
                                g_free(yyvsp[-2].id);
@@ -1520,33 +1568,33 @@ case 74:
                                        ;
     break;}
 case 75:
-#line 559 "parse.y"
+#line 563 "parse.y"
 { has_self = FALSE; ;
     break;}
 case 76:
-#line 562 "parse.y"
+#line 566 "parse.y"
 { vararg = TRUE; ;
     break;}
 case 77:
-#line 563 "parse.y"
+#line 567 "parse.y"
 { vararg = FALSE; ;
     break;}
 case 78:
-#line 566 "parse.y"
+#line 570 "parse.y"
 { ; ;
     break;}
 case 79:
-#line 567 "parse.y"
+#line 571 "parse.y"
 { ; ;
     break;}
 case 80:
-#line 570 "parse.y"
+#line 574 "parse.y"
 {
                        push_funcarg(yyvsp[0].id);
                                                                ;
     break;}
 case 81:
-#line 573 "parse.y"
+#line 577 "parse.y"
 {
                        if(strcmp(yyvsp[-2].id,"check")!=0) {
                                yyerror(_("parse error"));
@@ -1557,15 +1605,15 @@ case 81:
                                                                ;
     break;}
 case 82:
-#line 583 "parse.y"
+#line 587 "parse.y"
 { ; ;
     break;}
 case 83:
-#line 584 "parse.y"
+#line 588 "parse.y"
 { ; ;
     break;}
 case 84:
-#line 587 "parse.y"
+#line 591 "parse.y"
 {
                        if(strcmp(yyvsp[0].id,"type")==0) {
                                Node *node = new_check(TYPE_CHECK,NULL);
@@ -1581,65 +1629,65 @@ case 84:
                                        ;
     break;}
 case 85:
-#line 600 "parse.y"
+#line 604 "parse.y"
 {
                        Node *node = new_check(GT_CHECK,yyvsp[0].id);
                        checks = g_list_append(checks,node);
                                        ;
     break;}
 case 86:
-#line 604 "parse.y"
+#line 608 "parse.y"
 {
                        Node *node = new_check(LT_CHECK,yyvsp[0].id);
                        checks = g_list_append(checks,node);
                                        ;
     break;}
 case 87:
-#line 608 "parse.y"
+#line 612 "parse.y"
 {
                        Node *node = new_check(GE_CHECK,yyvsp[0].id);
                        checks = g_list_append(checks,node);
                                        ;
     break;}
 case 88:
-#line 612 "parse.y"
+#line 616 "parse.y"
 {
                        Node *node = new_check(LE_CHECK,yyvsp[0].id);
                        checks = g_list_append(checks,node);
                                        ;
     break;}
 case 89:
-#line 616 "parse.y"
+#line 620 "parse.y"
 {
                        Node *node = new_check(EQ_CHECK,yyvsp[0].id);
                        checks = g_list_append(checks,node);
                                        ;
     break;}
 case 90:
-#line 620 "parse.y"
+#line 624 "parse.y"
 {
                        Node *node = new_check(NE_CHECK,yyvsp[0].id);
                        checks = g_list_append(checks,node);
                                        ;
     break;}
 case 91:
-#line 626 "parse.y"
+#line 630 "parse.y"
 { yyval.id = yyvsp[0].id; ;
     break;}
 case 92:
-#line 627 "parse.y"
+#line 631 "parse.y"
 {
                        yyval.id = g_strconcat("-",yyvsp[0].id,NULL);
                        g_free(yyvsp[0].id);
                                        ;
     break;}
 case 93:
-#line 631 "parse.y"
+#line 635 "parse.y"
 { yyval.id = yyvsp[0].id; ;
     break;}
 }
    /* the action file gets copied in in place of this dollarsign */
-#line 498 "/usr/lib/bison.simple"
+#line 543 "/usr/lib/bison.simple"
 \f
   yyvsp -= yylen;
   yyssp -= yylen;
@@ -1834,6 +1882,30 @@ yyerrhandle:
 
   yystate = yyn;
   goto yynewstate;
+
+ yyacceptlab:
+  /* YYACCEPT comes here.  */
+  if (yyfree_stacks)
+    {
+      free (yyss);
+      free (yyvs);
+#ifdef YYLSP_NEEDED
+      free (yyls);
+#endif
+    }
+  return 0;
+
+ yyabortlab:
+  /* YYABORT comes here.  */
+  if (yyfree_stacks)
+    {
+      free (yyss);
+      free (yyvs);
+#ifdef YYLSP_NEEDED
+      free (yyls);
+#endif
+    }
+  return 1;
 }
-#line 634 "parse.y"
+#line 638 "parse.y"