Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:function

33 var thrower = { valueOf: function() { FAIL; },
34 toString: function() { FAIL; } };
36 // Tests that a native constructor function is included in the
38 function testTraceNativeConstructor(nativeFunc) {
48 // Tests that a native conversion function is included in the
50 function testTraceNativeConversion(nativeFunc) {
61 function testNotOmittedBuiltin(throwing, included) {
82 testNotOmittedBuiltin(function(){ [thrower, 2].sort(function (a,b) {
87 testNotOmittedBuiltin(function(){ thrower + 2; }, "ADD");