mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 21:39:57 +00:00
9 lines
245 B
Ruby
9 lines
245 B
Ruby
tp = TracePoint.new(:call) do |t|
|
|
# Для Ruby-методов:
|
|
next unless t.defined_class.is_a?(Module) # обычно всегда
|
|
puts "CALL #{t.defined_class}##{t.method_id} (line #{t.lineno})"
|
|
end
|
|
|
|
tp.enable
|
|
p "idi naxui"
|
|
tp.disable
|