Browse Source

fix testcase expect string to match correct behavior: bound functions should have a 'caller' and 'arguments' property

pull/1/head
Sami Vaarala 11 years ago
parent
commit
56977336f7
  1. 4
      ecmascript-testcases/test-dev-function-props.js

4
ecmascript-testcases/test-dev-function-props.js

@ -5,8 +5,8 @@
/*===
name: true, fileName: true, length: true, caller: false, arguments: false, callee: false, prototype: true
name: true, fileName: true, length: true, caller: true, arguments: true, callee: false, prototype: true
name: true, fileName: true, length: true, caller: false, arguments: false, callee: false, prototype: false
name: true, fileName: true, length: true, caller: false, arguments: false, callee: false, prototype: false
name: true, fileName: true, length: true, caller: true, arguments: true, callee: false, prototype: false
name: true, fileName: true, length: true, caller: true, arguments: true, callee: false, prototype: false
===*/
function test() {

Loading…
Cancel
Save