Skip to content

Commit 0a40f6a

Browse files
committed
reference TODO issue
1 parent 7213332 commit 0a40f6a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/neon-runtime/src/napi

crates/neon-runtime/src/napi/call.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pub unsafe extern "C" fn len(env: Env, info: FunctionCallbackInfo) -> i32 {
7777
/// Mutates the `out` argument provided to refer to the `napi_value` of the `i`th argument
7878
/// passed to the function.
7979
pub unsafe extern "C" fn get(env: Env, info: FunctionCallbackInfo, i: i32, out: &mut Local) {
80-
// TODO make this not allocate
80+
// TODO make this not allocate: https://github.com/neon-bindings/neon/issues/530
8181
// Instead, we can probably get all the arguments at once in `neon` itself?
8282
let mut args = vec![null_mut(); (i + 1) as usize];
8383
let mut num_args = args.len();

0 commit comments

Comments
 (0)