MCPcopy Index your code
hub / github.com/nodejs/node-addon-api / Get

Method Get

napi-inl.h:1733–1737  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1731}
1732
1733inline MaybeOrValue<Value> Object::Get(napi_value key) const {
1734 napi_value result;
1735 napi_status status = napi_get_property(_env, _value, key, &result);
1736 NAPI_RETURN_OR_THROW_IF_FAILED(_env, status, Value(_env, result), Value);
1737}
1738
1739inline MaybeOrValue<Value> Object::Get(Value key) const {
1740 napi_value result;

Callers 15

napi-inl.hFile · 0.80
ValueFunction · 0.80
RunWithContextFunction · 0.80
StaticGetterFunction · 0.80
IteratorMethod · 0.80
SetWithTempStringFunction · 0.80
MoveOperatorsTestFunction · 0.80
SetObjectFunction · 0.80
GetHelperFunction · 0.80
GetFromGetterFunction · 0.80
GetCastedFromGetterFunction · 0.80
RefMoveAssignTestsFunction · 0.80

Calls 6

JustFunction · 0.85
IsJustMethod · 0.80
EscapeMethod · 0.80
UnwrapMethod · 0.80
EnvMethod · 0.80
ValueFunction · 0.70

Tested by 4

TestCallFunction · 0.64
TestUnrefFunction · 0.64
TestUnrefFunction · 0.64
TestCallFunction · 0.64