An error in the debugging window will cause problems to scripts, for example:
JScript code:
function DoSomething(sNewName) {
[...]
Messenger.MyName = sNewName;
[...]
}
The third line of "code" within the function body will trigger an error, so the rest of the function won't be executed.
Of course, correct me of I'm wrong