From fc3e1d9e0c582e226e60d3cb63586fbd65e8f4ca Mon Sep 17 00:00:00 2001 From: aycabta Date: Wed, 20 Jan 2021 16:11:32 +0900 Subject: [PATCH] Delete a doodle-level memo comment... --- lib/irb/ruby-lex.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/irb/ruby-lex.rb b/lib/irb/ruby-lex.rb index 35af148d0..006fc191b 100644 --- a/lib/irb/ruby-lex.rb +++ b/lib/irb/ruby-lex.rb @@ -430,8 +430,6 @@ def take_corresponding_syntax_to_kw_do(tokens, index) 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?