diff options
author | aycabta <[email protected]> | 2021-01-20 16:11:32 +0900 |
---|---|---|
committer | git <[email protected]> | 2021-01-22 08:15:31 +0900 |
commit | fb33ec01193dbe9b8dcd86589df3e52396bac129 (patch) | |
tree | 4c335917b88ecf5882698cf433cb7888b2c248c8 /lib/irb/ruby-lex.rb | |
parent | 32b7dcfb56a417c1d1c354102351fc1825d653bf (diff) |
[ruby/irb] Delete a doodle-level memo comment...
https://github.com/ruby/irb/commit/fc3e1d9e0c
Diffstat (limited to 'lib/irb/ruby-lex.rb')
-rw-r--r-- | lib/irb/ruby-lex.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/irb/ruby-lex.rb b/lib/irb/ruby-lex.rb index 35af148d02..006fc191ba 100644 --- a/lib/irb/ruby-lex.rb +++ b/lib/irb/ruby-lex.rb @@ -430,8 +430,6 @@ class RubyLex index.downto(0) do |i| tk = tokens[i] # In "continue", the token isn't the corresponding syntax to "do". - #is_continue = process_continue(@tokens[0..(i - 1)]) - # continue ではなく、直前に (:on_ignored_nl|:on_nl|:on_comment):on_sp* みたいなのがあるかどうかを調べる non_sp_index = tokens[0..(i - 1)].rindex{ |t| t[1] != :on_sp } first_in_fomula = false if non_sp_index.nil? |