From 987834ed96a641584e8f8cade5d785e9522f61ac Mon Sep 17 00:00:00 2001 From: Sahin Yort Date: Mon, 18 Aug 2025 16:25:54 -0700 Subject: [PATCH] feat: expose positional to the public api --- starlark/src/eval/runtime/arguments.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starlark/src/eval/runtime/arguments.rs b/starlark/src/eval/runtime/arguments.rs index 2fc182798..cd55500b1 100644 --- a/starlark/src/eval/runtime/arguments.rs +++ b/starlark/src/eval/runtime/arguments.rs @@ -429,7 +429,7 @@ impl<'v, 'a> Arguments<'v, 'a> { /// Collect exactly `N` positional arguments from the [`Arguments`], failing if there are too many/few /// arguments. Ignores named arguments. #[inline(always)] - pub(crate) fn positional( + pub fn positional( &self, heap: &'v Heap, ) -> crate::Result<[Value<'v>; N]> {