summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug642206.js
blob: 775e4c6e17c6c4609a445428dba41ca0c5eaa61f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Function.prototype.__proto__ = null;

function testLenientAndStrict(code, lenient_pred, strict_pred) {
  return (strict_pred("'use strict'; " + code) && 
          lenient_pred(code));
}
function raisesException(exception) {
  return function (code) {
    try {
      eval(code);
    } catch (actual) {
    }
  };
};
try {
function arr() {
  return Object.defineProperty(Object()* delete Object, 0, {writable: false});
}
assertEq(testLenientAndStrict('var a = arr(); [a.splice(0, 1), a]',
                              raisesException(TypeError),
                              raisesException(TypeError)),
         true);
} catch (e) {}
ForIn_2(this);
function ForIn_2(object) {
  for ( property in object ) {
    with ( object ) {
    }
  }
}