pike.git/
src/
language.yacc
Branch:
Tag:
Non-build tags
All tags
No tags
2004-07-23
2004-07-23 17:23:12 by Henrik Grubbström (Grubba) <grubba@grubba.org>
cd69001d259b6b87cb97d9ce22b354774a980119 (
6
lines) (+
4
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Improved error handling.
Rev: src/language.yacc:1.338
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: language.yacc,v 1.
337
2004/
06
/
30
00:
17:
04
nilsson
Exp $
+
|| $Id: language.yacc,v 1.
338
2004/
07
/
23
17:
23:12
grubba
Exp $
*/ %pure_parser
113:
/* This is the grammar definition of Pike. */ #include "global.h"
-
RCSID("$Id: language.yacc,v 1.
337
2004/
06
/
30
00:
17:
04
nilsson
Exp $");
+
RCSID("$Id: language.yacc,v 1.
338
2004/
07
/
23
17:
23:12
grubba
Exp $");
#ifdef HAVE_MEMORY_H #include <memory.h> #endif
2575:
enum_list: enum_def | enum_list ',' enum_def
+
| error
; enum: modifiers TOK_ENUM