diff options
author | why <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-12 22:55:09 +0000 |
---|---|---|
committer | why <why@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-12 22:55:09 +0000 |
commit | 52e0ab245a1c7d446861f8882f741356b4d24bec (patch) | |
tree | 20b0e1270251af2ad32743b7657bd4f5744657e1 /ext/syck/bytecode.c | |
parent | 84c0dcfca25a7d67e45f6585962de38f7854bc2f (diff) |
* ext/syck/bytecode.c: turn off default implicit typing.
* ext/syck/implicit.c: detect base60 integers.
* ext/syck/rubyext.c: handle base60, as well as hex and octal
with commas. implicit typing of ruby symbols.
* test/yaml/test_yaml.rb: add test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5452 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/syck/bytecode.c')
-rw-r--r-- | ext/syck/bytecode.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/syck/bytecode.c b/ext/syck/bytecode.c index df15658a73..eff21d2046 100644 --- a/ext/syck/bytecode.c +++ b/ext/syck/bytecode.c @@ -1,4 +1,4 @@ -/* Generated by re2c 0.5 on Sun Nov 23 14:51:02 2003 */ +/* Generated by re2c 0.5 on Mon Jan 12 11:40:10 2004 */ #line 1 "bytecode.re" /* * bytecode.re @@ -510,7 +510,7 @@ yy44: yych = *++YYCURSOR; Directive: { - YYTOKTMP = YYCURSOR; + YYTOKEN = YYCURSOR; { YYCTYPE yych; @@ -611,7 +611,7 @@ yy48: yyaccept = 0; } yy49: #line 400 - { YYCURSOR = YYTOKTMP; + { YYCURSOR = YYTOKEN; return YAML_DOCSEP; } yy50: yych = *++YYCURSOR; @@ -876,7 +876,7 @@ yy58: yych = *++YYCURSOR; Comment: { - YYTOKTMP = YYCURSOR; + YYTOKEN = YYCURSOR; { YYCTYPE yych; |