diff options
author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-14 10:05:29 +0000 |
---|---|---|
committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-04-14 10:05:29 +0000 |
commit | dd82fb6393e8a4b5bc5b9fa6abfa0730c29e60c2 (patch) | |
tree | a283c9952e15974f05910c9f6adf0372c5154b2a | |
parent | af759b81a1ed2fb2c932b7d10b31f6e8d7397f5b (diff) |
* parse.y [ripper] (regexp): dispatch regexp option. [ruby-Bugs:1688]
* ext/ripper/lib/core.rb: regenerated (interface changed).
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8331 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | ext/ripper/lib/ripper/core.rb | 4 | ||||
-rw-r--r-- | parse.y | 2 |
3 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,10 @@ +Thu Apr 14 19:05:06 2005 Minero Aoki <aamine@loveruby.net> + + * parse.y [ripper] (regexp): dispatch regexp option. + [ruby-Bugs:1688] + + * ext/ripper/lib/core.rb: regenerated (interface changed). + Thu Apr 14 18:59:43 2005 Minero Aoki <aamine@loveruby.net> * lib/fileutils.rb (remove_file): ignore exceptions caused by diff --git a/ext/ripper/lib/ripper/core.rb b/ext/ripper/lib/ripper/core.rb index e936783698..b362d30d20 100644 --- a/ext/ripper/lib/ripper/core.rb +++ b/ext/ripper/lib/ripper/core.rb @@ -97,7 +97,7 @@ class Ripper :qwords_add => 2, :qwords_new => 0, :redo => 0, - :regexp_literal => 1, + :regexp_literal => 2, :rescue => 4, :rescue_mod => 2, :restparam => 1, @@ -525,7 +525,7 @@ class Ripper nil end - def on_regexp_literal(a) + def on_regexp_literal(a, b) a end @@ -3551,7 +3551,7 @@ regexp : tREGEXP_BEG xstring_contents tREGEXP_END } $$ = node; /*% - $$ = dispatch1(regexp_literal, $2); + $$ = dispatch2(regexp_literal, $2, $3); %*/ } ; |