Upgraded the Closure Compiler

This commit is contained in:
Jeff Parsons 2015-07-11 17:30:25 -07:00
commit 7126051bf8
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View file

@ -166,7 +166,13 @@ function Debugger(parmsDbg)
* to halt on whenever attempting to execute an instruction at the corresponding address,
* and aBreakRead and aBreakWrite are lists of addresses to halt on whenever a read or write,
* respectively, occurs at the corresponding address.
*
* NOTE: Curiously, after upgrading the Google Closure Compiler from v20141215 to v20150609,
* the resulting compiled code would crash in clearBreakpoints(), because the (renamed) aBreakRead
* property was already defined. To eliminate whatever was confusing the Closure Compiler, I've
* explicitly initialized all the properties that clearBreakpoints() (re)initializes.
*/
this.aBreakExec = this.aBreakRead = this.aBreakWrite = [];
this.clearBreakpoints();
/*