I am wondering if there is a way to see in the ruby-prof reports the values of the arguments of the called functions. I took a look at the ruby-prof documentation and it seems to me that such a info is not provided. Does anyone know if it is possible, and If not the reason of this choice? Did it involve modifying the interpreter?
--
---
You received this message because you are subscribed to the Google Groups "ruby optimization" group.
To unsubscribe from this group and stop receiving emails from it, send an email to ruby-optimizat...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
def foo(a)
...
end
def bar
foo(2)
end
method: footime: xtotal_time: y...parameters: a=2