summaryrefslogtreecommitdiff
path: root/ext/syck/gram.h
diff options
context:
space:
mode:
authorwhy <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-14 23:15:19 +0000
committerwhy <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-14 23:15:19 +0000
commitc76c3349e4d5cfc3d1452d32491647294c102a8b (patch)
tree8e4ffb887b591097de3f8f5b080276bb62f7648c /ext/syck/gram.h
parentb215f2fdb93fba83199168e50c28adc458844a26 (diff)
* ext/syck/bytecode.c: Checkin of YAML bytecode support.
* ext/syck/gram.c: Ditto. * ext/syck/syck.c: Ditto. * ext/syck/token.c: Ditto. * ext/syck/handler.c: Ditto. * ext/syck/handler.c: Now using 'tag' rather than 'taguri' in type URIs. * ext/syck/rubyext.c: Ditto (on both counts). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/syck/gram.h')
-rw-r--r--ext/syck/gram.h36
1 files changed, 19 insertions, 17 deletions
diff --git a/ext/syck/gram.h b/ext/syck/gram.h
index f21796a64d..d1e577b0ee 100644
--- a/ext/syck/gram.h
+++ b/ext/syck/gram.h
@@ -35,27 +35,29 @@
YAML_ANCHOR = 258,
YAML_ALIAS = 259,
YAML_TRANSFER = 260,
- YAML_ITRANSFER = 261,
- YAML_WORD = 262,
- YAML_PLAIN = 263,
- YAML_BLOCK = 264,
- YAML_DOCSEP = 265,
- YAML_IOPEN = 266,
- YAML_INDENT = 267,
- YAML_IEND = 268
+ YAML_TAGURI = 261,
+ YAML_ITRANSFER = 262,
+ YAML_WORD = 263,
+ YAML_PLAIN = 264,
+ YAML_BLOCK = 265,
+ YAML_DOCSEP = 266,
+ YAML_IOPEN = 267,
+ YAML_INDENT = 268,
+ YAML_IEND = 269
};
#endif
#define YAML_ANCHOR 258
#define YAML_ALIAS 259
#define YAML_TRANSFER 260
-#define YAML_ITRANSFER 261
-#define YAML_WORD 262
-#define YAML_PLAIN 263
-#define YAML_BLOCK 264
-#define YAML_DOCSEP 265
-#define YAML_IOPEN 266
-#define YAML_INDENT 267
-#define YAML_IEND 268
+#define YAML_TAGURI 261
+#define YAML_ITRANSFER 262
+#define YAML_WORD 263
+#define YAML_PLAIN 264
+#define YAML_BLOCK 265
+#define YAML_DOCSEP 266
+#define YAML_IOPEN 267
+#define YAML_INDENT 268
+#define YAML_IEND 269
@@ -68,7 +70,7 @@ typedef union {
char *name;
} yystype;
/* Line 1281 of /usr/local/share/bison/yacc.c. */
-#line 72 "y.tab.h"
+#line 74 "y.tab.h"
# define YYSTYPE yystype
#endif