(x)
| 99 | |
| 100 | st.test('object from bound constructor is instance of original and bound constructor', function (sst) { |
| 101 | var A = function (x) { |
| 102 | this.name = x || 'A'; |
| 103 | }; |
| 104 | var B = functionBind.call(A, null, 'B'); |
| 105 | |
| 106 | var result = new B(); |
nothing calls this directly
no outgoing calls
no test coverage detected