prototype: Set window.$continue to an Error with a helpful message for anyone who may still be using 'throw $continue'.
This commit is contained in:
parent
310b3eccfa
commit
8a382ff853
|
@ -1,5 +1,7 @@
|
|||
*SVN*
|
||||
|
||||
* Set window.$continue to an Error with a helpful message for anyone who may still be using "throw $continue". [sam]
|
||||
|
||||
* Fix jstest.rb IE support so you don't have to close the IE window after each test (yay!). Closes #8207. [Ryan Schuft]
|
||||
|
||||
* Fix jstest.rb Konqueror support. Closes #7140. [Christophe Porteneuve]
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
var $break = new Object();
|
||||
var $continue = new Object();
|
||||
var $break = {}, $continue = new Error('"throw $continue" is deprecated, use "return" instead');
|
||||
|
||||
var Enumerable = {
|
||||
each: function(iterator) {
|
||||
|
|
Loading…
Reference in New Issue