Searched refs:throwingRadix (Results 1 – 3 of 3) sorted by relevance
104 var throwingRadix = { valueOf: function() { state = "throwingRadix"; throw null; } }; variable107 try { parseInt('123', throwingRadix); } catch (e) {}115 try { parseInt(throwingString, throwingRadix); } catch (e) {}
64 PASS state = null; try { parseInt('123', throwingRadix); } catch (e) {} state; is "throwingRadix"65 PASS state = null; try { parseInt(throwingString, throwingRadix); } catch (e) {} state; is "throwin…
74 var throwingRadix = { valueOf: function(){ state = "throwingRadix"; throw null; } }; variable