Lines Matching defs:method
34 method () {
36 method: function (a, b, c, d, e) { return -50 + a + b + c + d + e; }
65 method () {
66 throw new Error ("(method)");
70 return super.method.call (this).method (1, 2, 3, 4, 5)
74 return super['method'].call (this)['method'] (1, 2, 3, 4, 5);
98 obj.method();
101 assert (ex.message === '(method)');
106 method: function () {