diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-19 07:10:09 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-11-19 07:10:09 +0000 |
| commit | d887a2fc45b9ccd27cb4c029c30f709f748a910c (patch) | |
| tree | f1ad61761e4b28b18e939dd1667981810cc49d4b /ext | |
| parent | 35bc2eee154c6aa18fe210e7d9f960a15655dce3 (diff) | |
| download | ruby-d887a2fc45b9ccd27cb4c029c30f709f748a910c.tar.gz ruby-d887a2fc45b9ccd27cb4c029c30f709f748a910c.tar.xz ruby-d887a2fc45b9ccd27cb4c029c30f709f748a910c.zip | |
* parse.y (parser_yylex): should clear parser->tokp as well.
[ruby-dev:32250]
* parse.y: remove NEED_ASSOC that break test_parser_events.
* parse.y (parser_yylex): should not decrement line numbers at the
end of file.
* file.c (rb_find_file_ext): search .rb files first through in the
loadpath.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13966 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/ripper/lib/ripper/lexer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ripper/lib/ripper/lexer.rb b/ext/ripper/lib/ripper/lexer.rb index 22048f161..14ef99f03 100644 --- a/ext/ripper/lib/ripper/lexer.rb +++ b/ext/ripper/lib/ripper/lexer.rb @@ -23,7 +23,7 @@ class Ripper # require 'ripper' # require 'pp' # - # p Ripper.scan("def m(a) nil end") + # p Ripper.lex("def m(a) nil end") # #=> [[[1, 0], :on_kw, "def"], # [[1, 3], :on_sp, " " ], # [[1, 4], :on_ident, "m" ], |
