]>
git.saurik.com Git - apple/javascriptcore.git/blob - tests/stress/static-getter-in-names.js
852a2e5706467d128d45abe577e51c86d7f461e0
1 function shouldBe(actual
, expected
) {
2 if (actual
!== expected
)
3 throw new Error('bad value: ' + actual
);
6 shouldBe(JSON
.stringify(Object
.getOwnPropertyNames(RegExp
.prototype).sort()), '["compile","constructor","exec","flags","global","ignoreCase","lastIndex","multiline","source","test","toString"]');
7 shouldBe(JSON
.stringify(Object
.getOwnPropertyNames(/Cocoa/).sort()), '["lastIndex"]');