michael@0: // Any copyright is dedicated to the Public Domain. michael@0: // http://creativecommons.org/licenses/publicdomain/ michael@0: michael@0: function foo() michael@0: { michael@0: assertEq(foo.arguments.length, 0); michael@0: assertEq(foo.caller, null); michael@0: } michael@0: michael@0: assertEq(foo.arguments, null); michael@0: assertEq(foo.caller, null); michael@0: foo(); michael@0: assertEq(foo.arguments, null); michael@0: assertEq(foo.caller, null); michael@0: michael@0: /******************************************************************************/ michael@0: michael@0: if (typeof reportCompare === "function") michael@0: reportCompare(true, true); michael@0: michael@0: print("Tests complete");