Forum Discussion
rjbrown
13 years agoVisitor
Apologies for taking a few months to reply and thank you. 🙂 I finally got back to this little project, and your response was very helpful.
Now a followup question, if you don't mind:
Can I use this technique to replace a global (non-anonymous) function declared as
as opposed to:
Again, this is for a development/debugging tool where I can live-patch code. Since most of this code is, unfortunately, not written by me and is not object oriented, most of the functions are declared as in the first example.
Now a followup question, if you don't mind:
Can I use this technique to replace a global (non-anonymous) function declared as
Function testFunc()
Return 100
End Function
as opposed to:
testFunc = Function()
Return 100
End Function
Again, this is for a development/debugging tool where I can live-patch code. Since most of this code is, unfortunately, not written by me and is not object oriented, most of the functions are declared as in the first example.