Retab all the things (except external/)

This commit is contained in:
Tab Assassin
2013-09-30 13:47:53 -05:00
parent 0ecba377f5
commit 2e8d19edcf
293 changed files with 32962 additions and 32962 deletions
+9 -9
View File
@@ -1,11 +1,11 @@
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
@@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