Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Get name of actual function?

From: greggirwin:mindspring at: 17-Dec-2002 11:13

Hi Robert, RMM> Hi, is there a way to find out the name of the actual executed function? RMM> I would like to trace a call-graph and print out the name of the actual RMM> function some how like this: This has come up before, but REBOL dynamic nature doesn't work very well for this. E.g. you can refer to a function by more than one name, call them indirectly, have anonymous functions, etc. I'm not sure what the result of the last go-round on this was, but I think you can't do what you want; not without your own system that parses things and tells when things are evaluated and what they are, which I think only RT can do effectively. -- Gregg