You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 11, 2020. It is now read-only.
- Do not create new `v8::Function` objects, both for performance
and because it is unclear whether that leaks memory
(Node.js issue 28988).
- Do not put functions into the inline header that do not need to
be there or that do not make sense as inline functions
(in particular, callbacks that are provided to C libraries can
not be realized as inline functions by the compiler).
- Remove implicit/redundant `inline` qualifiers and add appropriate
`const` qualifiers.
- Remove unnecessary `this->` prefixes.
- Return early for JS failures rather than accumulating them.
- Minor stylistic changes.
PR-URL: #126
Reviewed-By: Daniel Bevenius <[email protected]>
Reviewed-By: James M Snell <[email protected]>
0 commit comments