File tree 1 file changed +13
-5
lines changed
1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Class property and descriptor
2
2
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 )
8
16
9
17
## Example
10
18
You can’t perform that action at this time.
0 commit comments