We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7213332 commit 0a40f6aCopy full SHA for 0a40f6a
1 file changed
crates/neon-runtime/src/napi/call.rs
@@ -77,7 +77,7 @@ pub unsafe extern "C" fn len(env: Env, info: FunctionCallbackInfo) -> i32 {
77
/// Mutates the `out` argument provided to refer to the `napi_value` of the `i`th argument
78
/// passed to the function.
79
pub unsafe extern "C" fn get(env: Env, info: FunctionCallbackInfo, i: i32, out: &mut Local) {
80
- // TODO make this not allocate
+ // TODO make this not allocate: https://github.com/neon-bindings/neon/issues/530
81
// Instead, we can probably get all the arguments at once in `neon` itself?
82
let mut args = vec![null_mut(); (i + 1) as usize];
83
let mut num_args = args.len();
0 commit comments