diff options
Diffstat (limited to 'js/src/tests/non262/PrivateName/names.js')
-rw-r--r-- | js/src/tests/non262/PrivateName/names.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/js/src/tests/non262/PrivateName/names.js b/js/src/tests/non262/PrivateName/names.js new file mode 100644 index 0000000000..39d5128b2e --- /dev/null +++ b/js/src/tests/non262/PrivateName/names.js @@ -0,0 +1,30 @@ +// |reftest| +var C = class { + static #field = () => 'Test262'; + static field = () => 'Test262'; + #instance = () => 'Test262'; + instance = () => 'Test262'; + + static accessPrivateField() { + return this.#field; + } + + accessPrivateInstanceField() { + return this.#instance; + } + + static accessField() { + return this.field; + } + + accessInstanceField() { + return this.instance; + } +} +assertEq(C.accessPrivateField().name, '#field') +assertEq(C.accessField().name, 'field'); +var c = new C; +assertEq(c.accessPrivateInstanceField().name, '#instance'); +assertEq(c.accessInstanceField().name, 'instance'); + +if (typeof reportCompare === 'function') reportCompare(0, 0); |