43a3b80401
git-svn-id: file:///home/svn/framework3/trunk@7106 4d416f70-5f16-0410-b530-b9f4589650da
12 lines
275 B
Ruby
12 lines
275 B
Ruby
class String
|
|
@@idx_reported = {}
|
|
def [](*args)
|
|
|
|
if(args.length == 1 and args[0].class == ::Fixnum and not @@idx_reported[caller[0].to_s])
|
|
$stderr.puts "HOOK: String[idx] #{caller.join("\t")}\n\n"
|
|
@@idx_reported[caller[0].to_s] = true
|
|
end
|
|
slice(*args)
|
|
end
|
|
end
|