Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:function

33 x.b = function() { return 42; };
44 y.b = function() { return 42; };
52 function forty_two() { return 42; };
64 x1.b = function() { return 42; };
66 x2.b = function() { return 42; };
82 function Calculator(x, y) {
87 Calculator.prototype.sum = function() { return this.x + this.y; };
88 Calculator.prototype.difference = function() { return this.x - this.y; };
89 Calculator.prototype.product = function() { return this.x * this.y; };
90 Calculator.prototype.quotient = function() { return this.x / this.y; };
99 x.__defineGetter__('a', function() { return 7 });
100 x.b = function() { return 42; };