2009-10-01 16:04:48 +00:00
|
|
|
class String
|
2013-09-30 18:47:53 +00:00
|
|
|
@@idx_reported = {}
|
|
|
|
def [](*args)
|
2017-01-17 20:09:27 +00:00
|
|
|
|
|
|
|
if args.length == 1 && args[0].class == ::Integer && !@@idx_reported[caller[0].to_s]
|
2013-09-30 18:47:53 +00:00
|
|
|
$stderr.puts "HOOK: String[idx] #{caller.join("\t")}\n\n"
|
|
|
|
@@idx_reported[caller[0].to_s] = true
|
|
|
|
end
|
|
|
|
slice(*args)
|
|
|
|
end
|
2009-10-01 16:04:48 +00:00
|
|
|
end
|