3 module.exports = function (t, a) {
4 var foo = 'raz', bar = 'dwa'
5 , fn = function marko(a, b) { return this + a + b + foo + bar; }
14 a(result.length, fn.length, "Length");
15 a(result.name, fn.name, "Length");
16 a(result.call('marko', 'el', 'fe'), 'markoelferazdwa', "Body");
17 a(result.prototype, fn.prototype, "Prototype");
18 a(result.foo, fn.foo, "Custom property");