js/src/jit-test/tests/jaeger/inline/bug680759.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/jit-test/tests/jaeger/inline/bug680759.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,14 @@
     1.4 +
     1.5 +TryToCatch();
     1.6 +TryToCatch();
     1.7 +function Thrower( v ) {
     1.8 +  throw "Caught";
     1.9 +}
    1.10 +function Eval( v ) { 
    1.11 +	SECTION : Thrower(TryToCatch, v, ': 3')
    1.12 +}
    1.13 +function TryToCatch( value, expect ) {
    1.14 +  try {
    1.15 +    Eval( value )
    1.16 +  } catch (e) {  }
    1.17 +}

mercurial