-
Script runs a function that doesn’t exist anymore
So there’s a script:
function a(){
alert("lol");
}a()
I run it, then delete the function declaration:
a()The app still runs it as if the declaration is still there. Feels like it caches the function somewhere but I don’t know really.
Cache cleaning doesn’t help.
Restarting AE does help (i.e. it gives “function is undefined error”).How does it work actually and how can I force AE not to do that?