Skip to content

Commit 9bea434

Browse files
authored
doc: added some comments to ClassPropertyDescriptor. (#1149)
1 parent 57c212e commit 9bea434

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

doc/class_property_descriptor.md

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
# Class property and descriptor
22

3-
Property descriptor for use with `Napi::ObjectWrap::DefineClass()`.
4-
This is different from the standalone `Napi::PropertyDescriptor` because it is
5-
specific to each `Napi::ObjectWrap<T>` subclass.
6-
This prevents using descriptors from a different class when defining a new class
7-
(preventing the callbacks from having incorrect `this` pointers).
3+
Property descriptor for use with `Napi::ObjectWrap<T>` and
4+
`Napi::InstanceWrap<T>`. This is different from the standalone
5+
`Napi::PropertyDescriptor` because it is specific to each
6+
`Napi::ObjectWrap<T>` and `Napi::InstanceWrap<T>` subclasses.
7+
This prevents using descriptors from a different class when defining a new
8+
class (preventing the callbacks from having incorrect `this` pointers).
9+
10+
`Napi::ClassPropertyDescriptor` is a helper class created with
11+
`Napi::ObjectWrap<T>` and `Napi::InstanceWrap<T>`. For more reference about it
12+
see:
13+
14+
- [InstanceWrap](./instance_wrap.md)
15+
- [ObjectWrap](./object_wrap.md)
816

917
## Example
1018

0 commit comments

Comments
 (0)