* 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
This commit is contained in:
aamine 2005-04-14 10:05:29 +00:00
Родитель af759b81a1
Коммит dd82fb6393
3 изменённых файлов: 10 добавлений и 3 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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);
%*/
}
;