2020-04-13 14:31:13 -03:00
|
|
|
load("test-common.js");
|
|
|
|
|
|
2020-04-04 10:34:27 -03:00
|
|
|
try {
|
|
|
|
|
function foo() { }
|
|
|
|
|
assert(foo.length === 0);
|
|
|
|
|
assert((foo.length = 5) === 5);
|
|
|
|
|
assert(foo.length === 0);
|
|
|
|
|
|
|
|
|
|
function bar(a, b, c) {}
|
|
|
|
|
assert(bar.length === 3);
|
|
|
|
|
assert((bar.length = 5) === 5);
|
|
|
|
|
assert(bar.length === 3);
|
|
|
|
|
|
|
|
|
|
console.log("PASS");
|
|
|
|
|
} catch (e) {
|
|
|
|
|
console.log("FAIL: " + e);
|
|
|
|
|
}
|