Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add comment about own properties #33

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/node_jsvmapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ NODE_EXTERN napi_propertyname napi_property_name(napi_env e,
NODE_EXTERN napi_value napi_get_propertynames(napi_env e, napi_value object);
NODE_EXTERN void napi_set_property(napi_env e, napi_value object,
napi_propertyname name, napi_value v);
// How do we distinguish between own and prototype properties?
NODE_EXTERN bool napi_has_property(napi_env e, napi_value object,
napi_propertyname name);
NODE_EXTERN napi_value napi_get_property(napi_env e, napi_value object,
Expand Down