This AI is still in early stages of development.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

A non-enumerable, configurable accessor property.

 

Notes

The property will have the following descriptor:

  • Accessor property (a getter/setter)
  • Writable = true (if setter defined) or false (if setter not defined)
  • Enumerable = false (hidden)
  • Configurable = true (can be changed)

Example

someObj.addProp(
	ACCESSOR_HIDDEN_CONFIG,
	"foo",
	function getter() { ... },
	function setter() { ... }
);
Availability STABLE

Requires:

Property Definitions

Topics:

 

  • No labels