[ruby/csv] parser: add one more trace

https://github.com/ruby/csv/commit/5df650be0c
This commit is contained in:
Sutou Kouhei 2023-06-26 09:51:04 +09:00 committed by Hiroshi SHIBATA
parent 2098093fb4
commit 1f46793406

View File

@ -157,6 +157,7 @@ class CSV
# trace(__method__, pattern, :done, :last, value) if @last_scanner
return value if @last_scanner
# trace(__method__, pattern, :done, :nil) if value.nil?
return nil if value.nil?
while @scanner.eos? and read_chunk and (sub_value = @scanner.scan(pattern))
# trace(__method__, pattern, :sub, sub_value)