blob: 4aa0769729db4c83a6a604268de0965c00a81c92 [file] [log] [blame]
PASS s === s
PASS function () {
"use strict";
assertEq(this, "s");
// The GETTHISPROP should not cause |this| to become wrapped.
return [this.m, this];
} === function () {
"use strict";
assertEq(this, "s");
// The GETTHISPROP should not cause |this| to become wrapped.
return [this.m, this];
}
PASS s === s
PASSED!
PASS successfullyParsed is true
TEST COMPLETE