Skip to main content

kcl_lib/execution/
fn_call.rs

1use async_recursion::async_recursion;
2use indexmap::IndexMap;
3use kcl_api::Group;
4use kcl_api::OpArg;
5
6use crate::CompilationIssue;
7use crate::NodePath;
8use crate::NodePathExt;
9use crate::SourceRange;
10use crate::errors::KclError;
11use crate::errors::KclErrorDetails;
12use crate::execution::BodyType;
13use crate::execution::ExecState;
14use crate::execution::ExecutorContext;
15use crate::execution::Geometry;
16use crate::execution::KclValue;
17use crate::execution::KclValueControlFlow;
18use crate::execution::Metadata;
19use crate::execution::Solid;
20use crate::execution::StatementKind;
21use crate::execution::TagEngineInfo;
22use crate::execution::TagIdentifier;
23use crate::execution::annotations;
24use crate::execution::cad_op::Operation;
25use crate::execution::cad_op::op_from_kcl_value;
26use crate::execution::control_continue;
27use crate::execution::kcl_value::FunctionBody;
28use crate::execution::kcl_value::FunctionSource;
29use crate::execution::kcl_value::NamedParam;
30use crate::execution::kcl_value::ParamUnavailable;
31use crate::execution::memory;
32use crate::execution::types::CoercionMode;
33use crate::execution::types::RuntimeType;
34use crate::parsing::ast::types::CallExpressionKw;
35use crate::parsing::ast::types::Node;
36use crate::parsing::ast::types::Type;
37use crate::std::ConsumedSolidArgCheck;
38use crate::std::RegionBehavior;
39use crate::std::StaleRegionPolicy;
40use crate::std::region_consumption::PendingRegionConsumption;
41use crate::std::region_consumption::prepare_region_consumption;
42use crate::std::region_consumption::record_consumed_regions;
43use crate::std::region_consumption::validate_region_args_not_consumed;
44use crate::std::region_consumption::warn_if_region_args_consumed;
45use crate::std::solid_consumption::validate_value_not_consumed;
46use crate::std::solid_consumption::warn_if_value_consumed_for_deprecated_call;
47
48#[derive(Debug, Clone)]
49pub struct Args<Status: ArgsStatus = Desugared> {
50    /// Name of the function these args are being passed into.
51    pub fn_name: Option<String>,
52    /// Unlabeled keyword args. Currently only the first formal arg can be unlabeled.
53    /// If the argument was a local variable, then the first element of the tuple is its name
54    /// which may be used to treat this arg as a labelled arg.
55    pub unlabeled: Vec<(Option<String>, Arg)>,
56    /// Labeled args.
57    pub labeled: IndexMap<String, Arg>,
58    pub source_range: SourceRange,
59    pub node_path: Option<NodePath>,
60    pub ctx: ExecutorContext,
61    /// If this call happens inside a pipe (|>) expression, this holds the LHS of that |>.
62    /// Otherwise it's None.
63    pub pipe_value: Option<Arg>,
64    _status: std::marker::PhantomData<Status>,
65}
66
67pub trait ArgsStatus: std::fmt::Debug + Clone {}
68
69#[derive(Debug, Clone)]
70pub struct Sugary;
71impl ArgsStatus for Sugary {}
72
73// Invariants guaranteed by the `Desugared` status:
74// - There is either 0 or 1 unlabeled arguments
75// - Any lableled args are in the labeled map, and not the unlabeled Vec.
76// - The arguments match the type signature of the function exactly
77// - pipe_value.is_none()
78#[derive(Debug, Clone)]
79pub struct Desugared;
80impl ArgsStatus for Desugared {}
81
82impl Args<Sugary> {
83    /// Collect the given keyword arguments.
84    pub fn new(
85        labeled: IndexMap<String, Arg>,
86        unlabeled: Vec<(Option<String>, Arg)>,
87        source_range: SourceRange,
88        node_path: Option<NodePath>,
89        exec_state: &mut ExecState,
90        ctx: ExecutorContext,
91        fn_name: Option<String>,
92    ) -> Args<Sugary> {
93        Args {
94            fn_name,
95            labeled,
96            unlabeled,
97            source_range,
98            node_path,
99            ctx,
100            pipe_value: exec_state.pipe_value().map(|v| Arg::new(v.clone(), source_range)),
101            _status: std::marker::PhantomData,
102        }
103    }
104}
105
106impl<Status: ArgsStatus> Args<Status> {
107    /// How many arguments are there?
108    pub fn len(&self) -> usize {
109        self.labeled.len() + self.unlabeled.len()
110    }
111
112    /// Are there no arguments?
113    pub fn is_empty(&self) -> bool {
114        self.labeled.is_empty() && self.unlabeled.is_empty()
115    }
116}
117
118impl Args<Desugared> {
119    pub fn new_no_args(
120        source_range: SourceRange,
121        node_path: Option<NodePath>,
122        ctx: ExecutorContext,
123        fn_name: Option<String>,
124    ) -> Args {
125        Args {
126            fn_name,
127            unlabeled: Default::default(),
128            labeled: Default::default(),
129            source_range,
130            node_path,
131            ctx,
132            pipe_value: None,
133            _status: std::marker::PhantomData,
134        }
135    }
136
137    /// Get the unlabeled keyword argument. If not set, returns None.
138    pub(crate) fn unlabeled_kw_arg_unconverted(&self) -> Option<&Arg> {
139        self.unlabeled.first().map(|(_, a)| a)
140    }
141}
142
143#[derive(Debug, Clone)]
144pub struct Arg {
145    /// The evaluated argument.
146    pub value: KclValue,
147    /// The source range of the unevaluated argument.
148    pub source_range: SourceRange,
149}
150
151impl Arg {
152    pub fn new(value: KclValue, source_range: SourceRange) -> Self {
153        Self { value, source_range }
154    }
155
156    pub fn synthetic(value: KclValue) -> Self {
157        Self {
158            value,
159            source_range: SourceRange::synthetic(),
160        }
161    }
162
163    pub fn source_ranges(&self) -> Vec<SourceRange> {
164        vec![self.source_range]
165    }
166}
167
168impl Node<CallExpressionKw> {
169    #[async_recursion]
170    pub(super) async fn execute(
171        &self,
172        exec_state: &mut ExecState,
173        ctx: &ExecutorContext,
174    ) -> Result<KclValueControlFlow, KclError> {
175        let fn_name = &self.callee;
176        let callsite: SourceRange = self.into();
177
178        // Resolve the function before evaluating arguments so calls can mutate
179        // exec_state without holding a memory borrow.
180        let func: KclValue = fn_name.get_result(exec_state, ctx).await?;
181
182        let Some(fn_src) = func.as_function() else {
183            return Err(KclError::new_semantic(KclErrorDetails::new(
184                "cannot call this because it isn't a function".to_string(),
185                vec![callsite],
186            )));
187        };
188
189        // Build a hashmap from argument labels to the final evaluated values.
190        let mut fn_args = IndexMap::with_capacity(self.arguments.len());
191        let mut unlabeled = Vec::new();
192
193        // Evaluate the unlabeled first param, if any exists.
194        if let Some(ref arg_expr) = self.unlabeled {
195            let source_range = SourceRange::from(arg_expr.clone());
196            let metadata = Metadata { source_range };
197            let value_cf = ctx
198                .execute_expr(arg_expr, exec_state, &metadata, &[], StatementKind::Expression)
199                .await?;
200            let value = control_continue!(value_cf);
201
202            let label = arg_expr.ident_name().map(str::to_owned);
203
204            unlabeled.push((label, Arg::new(value, source_range)))
205        }
206
207        for arg_expr in &self.arguments {
208            let source_range = SourceRange::from(arg_expr.arg.clone());
209            let metadata = Metadata { source_range };
210            let value_cf = ctx
211                .execute_expr(&arg_expr.arg, exec_state, &metadata, &[], StatementKind::Expression)
212                .await?;
213            let value = control_continue!(value_cf);
214            let arg = Arg::new(value, source_range);
215            match &arg_expr.label {
216                Some(l) => {
217                    fn_args.insert(l.name.clone(), arg);
218                }
219                None => {
220                    unlabeled.push((arg_expr.arg.ident_name().map(str::to_owned), arg));
221                }
222            }
223        }
224
225        let args = Args::new(
226            fn_args,
227            unlabeled,
228            callsite,
229            self.node_path.clone(),
230            exec_state,
231            ctx.clone(),
232            Some(fn_name.name.name.clone()),
233        );
234
235        let return_value = fn_src
236            .call_kw(Some(fn_name.to_string()), exec_state, ctx, args, callsite)
237            .await
238            .map_err(|e| {
239                // Add the call expression to the source ranges.
240                //
241                // TODO: Use the name that the function was defined
242                // with, not the identifier it was used with.
243                e.add_unwind_location(Some(fn_name.to_string()), callsite)
244            })?;
245
246        let result = return_value.ok_or_else(move || {
247            let mut source_ranges: Vec<SourceRange> = vec![callsite];
248            // We want to send the source range of the original function.
249            if let KclValue::Function { meta, .. } = func {
250                source_ranges = meta.iter().map(|m| m.source_range).collect();
251            };
252            KclError::new_undefined_value(
253                KclErrorDetails::new(
254                    format!("Result of user-defined function {fn_name} is undefined"),
255                    source_ranges,
256                ),
257                None,
258            )
259        })?;
260
261        Ok(result)
262    }
263}
264
265/// Guidance included in deprecation warnings for sketch v1 stdlib functions.
266/// The warning must stand on its own: a human or AI agent reading it should
267/// learn what replaces the function and where to find conversion examples
268/// without any other context.
269const SKETCH_V1_MIGRATION_HELP: &str = "It is part of the legacy sketch API (sketch v1), which is replaced by the sketch-solve API.
270
271See https://zoo.dev/docs/kcl-book/sketch2d_constraints.html for an introduction to sketch-solve with examples.
272
273Draw profiles inside a `sketch(on = XY) { ... }` block using segment functions with absolute points, e.g. `line(start = [0, 0], end = [4, 3])`, optionally marking values as adjustable with `var` and constraining them with constraint functions like `coincident()` or `horizontal()`. ";
274
275/// Migration guidance for a deprecated stdlib function, when it has a
276/// dedicated replacement story beyond its docs page.
277fn migration_help(fn_src: &FunctionSource) -> Option<&'static str> {
278    let name = &fn_src.std_props.as_ref()?.name;
279    // Every deprecated function in std::sketch is part of sketch v1, which
280    // sketch-solve replaces in KCL 2.0.
281    name.starts_with("std::sketch::").then_some(SKETCH_V1_MIGRATION_HELP)
282}
283
284impl FunctionSource {
285    pub(crate) async fn call_kw(
286        &self,
287        fn_name: Option<String>,
288        exec_state: &mut ExecState,
289        ctx: &ExecutorContext,
290        args: Args<Sugary>,
291        callsite: SourceRange,
292    ) -> Result<Option<KclValueControlFlow>, KclError> {
293        exec_state.inc_call_stack_size(callsite)?;
294
295        let result = self.inner_call_kw(fn_name, exec_state, ctx, args, callsite).await;
296
297        exec_state.dec_call_stack_size(callsite)?;
298        result
299    }
300
301    async fn inner_call_kw(
302        &self,
303        fn_name: Option<String>,
304        exec_state: &mut ExecState,
305        ctx: &ExecutorContext,
306        args: Args<Sugary>,
307        callsite: SourceRange,
308    ) -> Result<Option<KclValueControlFlow>, KclError> {
309        let (state, args) = self.call_setup(&fn_name, exec_state, args, callsite)?;
310        // Do not early return via ? or something until we've called
311        // call_finish (or call_abort_on_arg_binding_failure), so that the
312        // ambient flags are restored and the callee env is popped.
313        let result = match &self.body {
314            FunctionBody::Rust(f) => f(exec_state, args).await.map(Some),
315            FunctionBody::Kcl(_) => {
316                if let Err(e) = assign_args_to_params_kw(self, args, exec_state) {
317                    return Err(Self::call_abort_on_arg_binding_failure(state, e, exec_state));
318                }
319
320                let block_result = ctx.exec_block(&self.ast.body, exec_state, BodyType::Block).await;
321                self.kcl_body_result(block_result, exec_state)
322            }
323        };
324        self.call_finish(state, result, exec_state)
325    }
326
327    /// The first half of a function call: warnings, argument type checking,
328    /// operation setup, pushing the callee environment, and stdlib
329    /// ambient-flag tracking. After this succeeds, the callee environment is
330    /// pushed and the ambient flags are set, so every path must reach
331    /// [`Self::call_finish`] (or [`Self::call_abort_on_arg_binding_failure`])
332    /// to balance them. The recursive executor keeps the returned [`CallState`]
333    /// across the body await; the machine executor parks it in a call-boundary
334    /// continuation.
335    pub(super) fn call_setup(
336        &self,
337        fn_name: &Option<String>,
338        exec_state: &mut ExecState,
339        args: Args<Sugary>,
340        callsite: SourceRange,
341    ) -> Result<(CallState, Args), KclError> {
342        // The KCL stdlib is allowed to use deprecated sketch1 functions inside.
343        let warn_on_deprecated_usage = !exec_state.mod_local.inside_stdlib;
344        if warn_on_deprecated_usage {
345            let subject = match &fn_name {
346                Some(n) => format!("`{n}`"),
347                None => "This function".to_owned(),
348            };
349            let message = if self.deprecated {
350                Some(match migration_help(self) {
351                    Some(help) => format!("{subject} is deprecated. {help}"),
352                    None => format!("{subject} is deprecated, see the docs for a recommended replacement"),
353                })
354            } else if let Some(since) = &self.deprecated_since
355                && annotations::version_ge(exec_state.deprecation_version(), since)
356            {
357                Some(match migration_help(self) {
358                    Some(help) => format!("{subject} is deprecated as of KCL {since}. {help}"),
359                    None => {
360                        format!(
361                            "{subject} is deprecated as of KCL {since}. See the docs for a recommended replacement."
362                        )
363                    }
364                })
365            } else {
366                None
367            };
368            if let Some(message) = message {
369                let mut issue = CompilationIssue::err(callsite, message);
370                issue.tag = crate::errors::Tag::Deprecated;
371                exec_state.warn(issue, annotations::WARN_DEPRECATED);
372            }
373        }
374        if self.experimental {
375            exec_state.warn_experimental(
376                &match &fn_name {
377                    Some(n) => format!("`{n}`"),
378                    None => "This function".to_owned(),
379                },
380                callsite,
381            );
382        }
383
384        let args = type_check_params_kw(fn_name.as_deref(), self, args, exec_state)?;
385        let face_tag_names = face_tag_names_for_call(self, &args);
386        let pending_region_consumption = prepare_region_consumption(
387            self.std_props
388                .as_ref()
389                .map_or(RegionBehavior::WarnOnConsumed, |props| props.region_behavior),
390            &args,
391            exec_state,
392        )?;
393
394        // Warn if experimental or deprecated arguments are used after desugaring.
395        for (label, arg) in &args.labeled {
396            let Some(param) = self.named_args.get(label.as_str()) else {
397                continue;
398            };
399            if param.experimental {
400                exec_state.warn_experimental(
401                    &match &fn_name {
402                        Some(f) => format!("`{f}({label})`"),
403                        None => label.to_owned(),
404                    },
405                    arg.source_range,
406                );
407            }
408            // `deprecated` deprecates the parameter for all versions, whereas
409            // `deprecated_since` only deprecates it at or after a given version.
410            let deprecation_suffix = if !warn_on_deprecated_usage {
411                None
412            } else if param.deprecated {
413                Some("is deprecated, see the docs for a recommended replacement".to_owned())
414            } else if let Some(since) = &param.deprecated_since
415                && annotations::version_ge(exec_state.deprecation_version(), since)
416            {
417                Some(format!(
418                    "is deprecated as of KCL {since}. See the docs for a recommended replacement."
419                ))
420            } else {
421                None
422            };
423            if let Some(suffix) = deprecation_suffix {
424                let qualified = match &fn_name {
425                    Some(f) => format!("`{f}({label})`"),
426                    None => format!("`{label}`"),
427                };
428                let mut issue = CompilationIssue::err(arg.source_range, format!("{qualified} {suffix}"));
429                issue.tag = crate::errors::Tag::Deprecated;
430                exec_state.warn(issue, annotations::WARN_DEPRECATED);
431            }
432        }
433
434        // Don't early return until the stack frame is popped!
435        self.body.prep_mem(exec_state)?;
436
437        // Some function calls might get added to the feature tree.
438        // We do this by adding an "operation".
439
440        // Don't add operations if the KCL code being executed is
441        // just the KCL stdlib calling other KCL stdlib,
442        // because the stdlib internals aren't relevant to users,
443        // that would just be pointless noise.
444        //
445        // Do add operations if the KCL being executed is
446        // user-defined, or the calling code is user-defined,
447        // because that's relevant to the user.
448        let would_trace_stdlib_internals = exec_state.mod_local.inside_stdlib && self.is_std();
449        // self.include_in_feature_tree is set by the KCL annotation `@(feature_tree = true)`.
450        let should_track_operation = !would_trace_stdlib_internals && self.include_in_feature_tree;
451        let op = if should_track_operation {
452            let op_labeled_args = args
453                .labeled
454                .iter()
455                .map(|(k, arg)| (k.clone(), OpArg::new(op_from_kcl_value(&arg.value), arg.source_range)))
456                .collect();
457
458            // If you're calling a stdlib function, track that call as an operation.
459            if self.is_std() {
460                Some(Operation::StdLibCall {
461                    name: fn_name.clone().unwrap_or_else(|| "unknown function".to_owned()),
462                    unlabeled_arg: args
463                        .unlabeled_kw_arg_unconverted()
464                        .map(|arg| OpArg::new(op_from_kcl_value(&arg.value), arg.source_range)),
465                    labeled_args: op_labeled_args,
466                    node_path: NodePath::placeholder(),
467                    source_range: callsite,
468                    stdlib_entry_source_range: exec_state.mod_local.stdlib_entry_source_range,
469                    is_error: false,
470                })
471            } else {
472                // Otherwise, you're calling a user-defined function, track that call as an operation.
473                exec_state.push_op(Operation::GroupBegin {
474                    group: Group::FunctionCall {
475                        name: fn_name.clone(),
476                        function_source_range: self.ast.as_source_range(),
477                        unlabeled_arg: args
478                            .unlabeled_kw_arg_unconverted()
479                            .map(|arg| OpArg::new(op_from_kcl_value(&arg.value), arg.source_range)),
480                        labeled_args: op_labeled_args,
481                    },
482                    node_path: NodePath::placeholder(),
483                    source_range: callsite,
484                });
485
486                None
487            }
488        } else {
489            None
490        };
491
492        let is_calling_into_stdlib = match &self.body {
493            FunctionBody::Rust(_) => true,
494            FunctionBody::Kcl(_) => self.is_std(),
495        };
496        let is_crossing_into_stdlib = is_calling_into_stdlib && !exec_state.mod_local.inside_stdlib;
497        let is_crossing_out_of_stdlib = !is_calling_into_stdlib && exec_state.mod_local.inside_stdlib;
498        let stdlib_entry_source_range = if is_crossing_into_stdlib {
499            // When we're calling into the stdlib, for example calling hole(),
500            // track the location so that any further stdlib calls like
501            // subtract() can point to the hole() call. The frontend needs this.
502            Some(callsite)
503        } else if is_crossing_out_of_stdlib {
504            // When map() calls a user-defined function, and it calls extrude()
505            // for example, we want it to point the the extrude() call, not
506            // the map() call.
507            None
508        } else {
509            // When we're not crossing the stdlib boundary, keep the previous
510            // value.
511            exec_state.mod_local.stdlib_entry_source_range
512        };
513
514        let prev_inside_stdlib = std::mem::replace(&mut exec_state.mod_local.inside_stdlib, is_calling_into_stdlib);
515        let prev_stdlib_entry_source_range = std::mem::replace(
516            &mut exec_state.mod_local.stdlib_entry_source_range,
517            stdlib_entry_source_range,
518        );
519
520        Ok((
521            CallState {
522                prev_inside_stdlib,
523                prev_stdlib_entry_source_range,
524                op,
525                should_track_operation,
526                is_calling_into_stdlib,
527                face_tag_names,
528                pending_region_consumption,
529            },
530            args,
531        ))
532    }
533
534    /// Compute a KCL function body's result while the callee environment is
535    /// still pushed: an `Exit` or `Return` passes through untouched;
536    /// otherwise the function's result is the `__return` value recorded in
537    /// the callee environment, if any.
538    ///
539    /// NOTE: under a pre-KCL-3.0 entry point, a `return` statement does NOT
540    /// stop the body -- it records `__return` and execution continues to the
541    /// following statements (see exec_block's ReturnStatement arm). The block's
542    /// own trailing value is deliberately ignored here; only `__return` counts.
543    /// Under KCL 3.0, `return` stops the body and arrives here as a `Return`
544    /// control flow instead; `__return` is never written.
545    pub(super) fn kcl_body_result(
546        &self,
547        block_result: Result<Option<KclValueControlFlow>, KclError>,
548        exec_state: &mut ExecState,
549    ) -> Result<Option<KclValueControlFlow>, KclError> {
550        block_result.map(|cf| {
551            if let Some(cf) = cf
552                && cf.is_some_return()
553            {
554                return Some(cf);
555            }
556            // Ignore the block's value and extract the return value
557            // from memory.
558            exec_state
559                .stack()
560                .get(memory::RETURN_NAME, self.ast.as_source_range())
561                .ok()
562                .map(KclValue::continue_)
563        })
564    }
565
566    /// The failure path when binding a KCL function's arguments fails, before
567    /// the body ran: restore `inside_stdlib` and pop the callee environment.
568    /// Deliberately asymmetric with [`Self::call_finish`] -- it does not
569    /// restore `stdlib_entry_source_range` and does not finalize the
570    /// operation -- preserving the recursive executor's historical behavior
571    /// exactly.
572    pub(super) fn call_abort_on_arg_binding_failure(
573        state: CallState,
574        e: KclError,
575        exec_state: &mut ExecState,
576    ) -> KclError {
577        exec_state.mod_local.inside_stdlib = state.prev_inside_stdlib;
578        match exec_state.mut_stack().pop_env() {
579            Ok(_) => e,
580            Err(pop_err) => pop_err,
581        }
582    }
583
584    /// The second half of a function call: restore the ambient stdlib flags,
585    /// pop the callee environment, finalize the operation, and then -- for
586    /// normal completions only -- apply tag updates and return-type coercion.
587    /// `Exit` control flow bypasses tags and coercion (it terminates the whole
588    /// evaluation rather than completing this function normally), and errors
589    /// skip them too; both still restore ambient state and finalize the
590    /// operation. `Return` control flow (a KCL 3.0 early return) is absorbed
591    /// here: it completes this function normally, so tags and coercion apply to
592    /// it exactly as they do to a `__return` value.
593    pub(super) fn call_finish(
594        &self,
595        state: CallState,
596        result: Result<Option<KclValueControlFlow>, KclError>,
597        exec_state: &mut ExecState,
598    ) -> Result<Option<KclValueControlFlow>, KclError> {
599        let CallState {
600            prev_inside_stdlib,
601            prev_stdlib_entry_source_range,
602            op,
603            should_track_operation,
604            is_calling_into_stdlib,
605            face_tag_names,
606            pending_region_consumption,
607        } = state;
608        exec_state.mod_local.inside_stdlib = prev_inside_stdlib;
609        exec_state.mod_local.stdlib_entry_source_range = prev_stdlib_entry_source_range;
610        exec_state.mut_stack().pop_env()?;
611
612        if result.is_ok()
613            && let Some(pending_region_consumption) = pending_region_consumption
614        {
615            record_consumed_regions(exec_state, pending_region_consumption);
616        }
617
618        if should_track_operation {
619            if let Some(mut op) = op {
620                op.set_std_lib_call_is_error(result.is_err());
621                // Track call operation.  We do this after the call
622                // since things like patternTransform may call user code
623                // before running, and we will likely want to use the
624                // return value. The call takes ownership of the args,
625                // so we need to build the op before the call.
626                exec_state.push_op(op);
627            } else if !is_calling_into_stdlib {
628                exec_state.push_op(Operation::GroupEnd);
629            }
630        }
631
632        let mut result = match result {
633            Ok(Some(value)) => {
634                if value.is_exit() {
635                    // `Exit` terminates the whole evaluation rather than completing this
636                    // function normally, so it bypasses return-type validation, including
637                    // the `never` contract.
638                    return Ok(Some(value));
639                } else {
640                    // `Continue` and `Return` both complete this function
641                    // normally.
642                    Ok(Some(value.into_value()))
643                }
644            }
645            Ok(None) => Ok(None),
646            Err(e) => Err(e),
647        };
648
649        if self.is_std()
650            && let Ok(Some(result)) = &mut result
651        {
652            update_memory_for_tags_of_geometry(result, exec_state)?;
653            if !face_tag_names.is_empty() {
654                attach_face_tags_to_geometry(result, exec_state, &face_tag_names);
655            }
656        }
657
658        coerce_result_type(result, self, exec_state).map(|r| r.map(KclValue::continue_))
659    }
660}
661
662/// State captured by [`FunctionSource::call_setup`] that
663/// [`FunctionSource::call_finish`] needs to complete the call: the ambient
664/// flags to restore, the deferred operation, and details of what was called.
665#[derive(Debug)]
666pub(super) struct CallState {
667    prev_inside_stdlib: bool,
668    prev_stdlib_entry_source_range: Option<SourceRange>,
669    /// Deferred stdlib-call operation, pushed by call_finish.
670    op: Option<Operation>,
671    should_track_operation: bool,
672    is_calling_into_stdlib: bool,
673    face_tag_names: Vec<String>,
674    pending_region_consumption: Option<PendingRegionConsumption>,
675}
676
677impl FunctionBody {
678    fn prep_mem(&self, exec_state: &mut ExecState) -> Result<(), KclError> {
679        match self {
680            FunctionBody::Rust(_) => exec_state.mut_stack().push_new_root_env(true),
681            FunctionBody::Kcl(memory) => exec_state.mut_stack().push_new_env_for_call(*memory),
682        }
683    }
684}
685
686/// Whether `value` may have come from a legacy (v1) sketch rather than a
687/// sketch block, which is what gates the legacy tag-memory updates in
688/// `update_memory_for_tags_of_geometry`.
689///
690/// Anything that is not a sketch or a solid answers `false`: a number or an
691/// enum variant is not a sketch of either generation, so it must not pull in
692/// legacy behavior. The match stays exhaustive so that adding a `KclValue`
693/// variant forces an explicit answer here instead of inheriting one.
694fn might_be_legacy_sketch(value: &KclValue) -> bool {
695    match value {
696        KclValue::Uuid { .. } => false,
697        KclValue::Bool { .. } => false,
698        KclValue::Number { .. } => false,
699        KclValue::String { .. } => false,
700        KclValue::Enum { .. } => false,
701        KclValue::SketchVar { .. } => false,
702        KclValue::SketchConstraint { .. } => false,
703        KclValue::Tuple { value, .. } => value.iter().any(might_be_legacy_sketch),
704        KclValue::HomArray { value, .. } => value.iter().any(might_be_legacy_sketch),
705        // TODO: sketch block result should return false.
706        KclValue::Object { value, .. } => value.values().any(might_be_legacy_sketch),
707        KclValue::TagIdentifier(_) => false,
708        KclValue::TagDeclarator(_) => false,
709        KclValue::GdtAnnotation { .. } => false,
710        KclValue::CameraView { .. } => false,
711        KclValue::NamedView { .. } => false,
712        KclValue::Plane { .. } => false,
713        KclValue::Face { .. } => false,
714        KclValue::BoundedEdge { .. } => false,
715        KclValue::Segment { .. } => false,
716        KclValue::Sketch { value: sketch } => sketch.origin_sketch_id.is_none(),
717        // A solid with no sketch has no tag container, so the caller returns
718        // early without consulting this answer; `true` keeps it the exact
719        // negation of the previous `originates_from_sketch_block`.
720        KclValue::Solid { value: solid } => solid
721            .sketch()
722            .map(|sketch| sketch.origin_sketch_id.is_none())
723            .unwrap_or(true),
724        KclValue::Helix { .. } => false,
725        KclValue::ImportedGeometry(_) => false,
726        KclValue::Function { .. } => false,
727        KclValue::Module { .. } => false,
728        KclValue::Type { .. } => false,
729        KclValue::KclNone { .. } => false,
730    }
731}
732
733fn face_tag_names_for_call(fn_def: &FunctionSource, args: &Args<Desugared>) -> Vec<String> {
734    let Some(std_props) = &fn_def.std_props else {
735        return Vec::new();
736    };
737
738    if !std_function_allows_face_tags(&std_props.name) {
739        return Vec::new();
740    }
741
742    args.labeled
743        .iter()
744        .filter(|(label, _)| matches!(label.as_str(), "tag" | "tagStart" | "tagEnd"))
745        .filter_map(|(_, arg)| match &arg.value {
746            KclValue::TagDeclarator(tag) => Some(tag.name.clone()),
747            _ => None,
748        })
749        .collect()
750}
751
752fn std_function_allows_face_tags(std_fn_name: &str) -> bool {
753    matches!(
754        std_fn_name,
755        "std::sketch::extrude"
756            | "std::solid::chamfer"
757            | "std::solid::fillet"
758            | "std::sketch::sweep"
759            | "std::sketch::loft"
760            | "std::sketch::revolve"
761    )
762}
763
764fn attach_face_tags_to_geometry(result: &mut KclValue, exec_state: &ExecState, tag_names: &[String]) {
765    match result {
766        KclValue::Solid { value } => attach_face_tags_to_solid(value, exec_state, tag_names),
767        KclValue::Tuple { value, .. } | KclValue::HomArray { value, .. } => {
768            for v in value {
769                attach_face_tags_to_geometry(v, exec_state, tag_names);
770            }
771        }
772        _ => {}
773    }
774}
775
776fn attach_face_tags_to_solid(solid: &mut Solid, exec_state: &ExecState, tag_names: &[String]) {
777    let surfaces = solid.value.clone();
778    for surface in surfaces {
779        let Some(tag) = surface.get_tag() else {
780            continue;
781        };
782        if !tag_names.iter().any(|tag_name| tag_name == &tag.name) {
783            continue;
784        }
785
786        let tag_id = solid
787            .sketch()
788            .and_then(|sketch| sketch.tags.get(&tag.name))
789            .cloned()
790            .unwrap_or_else(|| {
791                let mut solid_copy = solid.clone();
792                clear_tags_from_solid_copy(&mut solid_copy);
793                TagIdentifier {
794                    value: tag.name.clone(),
795                    info: vec![(
796                        exec_state.stack().current_epoch(),
797                        TagEngineInfo {
798                            id: surface.get_id(),
799                            surface: Some(surface.clone()),
800                            path: None,
801                            geometry: Geometry::Solid(solid_copy),
802                        },
803                    )],
804                    meta: vec![Metadata {
805                        source_range: tag.clone().into(),
806                    }],
807                }
808            });
809
810        match solid.faces.get_mut(&tag.name) {
811            Some(existing_tag) => existing_tag.merge_info(&tag_id),
812            None => {
813                solid.faces.insert(tag.name.clone(), tag_id);
814            }
815        }
816    }
817}
818
819fn clear_tags_from_solid_copy(solid: &mut Solid) {
820    if let Some(sketch) = solid.sketch_mut() {
821        sketch.tags.clear(); // Avoid recursive tags.
822    }
823    solid.faces.clear();
824}
825
826fn update_memory_for_tags_of_geometry(result: &mut KclValue, exec_state: &mut ExecState) -> Result<(), KclError> {
827    let might_be_legacy = might_be_legacy_sketch(&*result);
828    // If the return result is a sketch or solid, we want to update the
829    // memory for the tags of the group.
830    // TODO: This could probably be done in a better way, but as of now this was my only idea
831    // and it works.
832    match result {
833        KclValue::Sketch { value } if might_be_legacy => {
834            for (name, tag) in value.tags.iter() {
835                if exec_state.stack().cur_frame_contains(name)? {
836                    exec_state.mut_stack().update(name, |v, _| {
837                        if let Some(existing_tag) = v.as_mut_tag() {
838                            existing_tag.merge_info(tag);
839                        }
840                    })?;
841                } else {
842                    exec_state.mut_stack().add(
843                        name.to_owned(),
844                        KclValue::TagIdentifier(Box::new(tag.clone())),
845                        SourceRange::default(),
846                    )?;
847                }
848            }
849        }
850        KclValue::Solid { value } => {
851            let surfaces = value.value.clone();
852            if value.sketch_mut().is_none() {
853                // If the solid isn't based on a sketch, then it doesn't have a tag container,
854                // so there's nothing to do here.
855                return Ok(());
856            };
857            // Now that we know there's work to do (because there's a tag container),
858            // run some clones.
859            let solid_copies: Vec<Box<Solid>> = surfaces.iter().map(|_| value.clone()).collect();
860            // Get the tag container. We expect it to always succeed because we already checked
861            // for a tag container above.
862            let Some(sketch) = value.sketch_mut() else {
863                return Ok(());
864            };
865            for (v, mut solid_copy) in surfaces.iter().zip(solid_copies) {
866                clear_tags_from_solid_copy(&mut solid_copy);
867                if let Some(tag) = v.get_tag() {
868                    // Get the past tag and update it.
869                    let mut is_part_of_sketch = false;
870                    let tag_id = if let Some(t) = sketch.tags.get(&tag.name) {
871                        is_part_of_sketch = true;
872                        let mut t = t.clone();
873                        let Some(info) = t.get_cur_info() else {
874                            return Err(KclError::new_internal(KclErrorDetails::new(
875                                format!("Tag {} does not have path info", tag.name),
876                                vec![tag.into()],
877                            )));
878                        };
879
880                        let mut info = info.clone();
881                        info.id = v.get_id();
882                        info.surface = Some(v.clone());
883                        info.geometry = Geometry::Solid(*solid_copy);
884                        t.info.push((exec_state.stack().current_epoch(), info));
885                        t
886                    } else {
887                        // It's probably a fillet or a chamfer.
888                        // Initialize it.
889                        TagIdentifier {
890                            value: tag.name.clone(),
891                            info: vec![(
892                                exec_state.stack().current_epoch(),
893                                TagEngineInfo {
894                                    id: v.get_id(),
895                                    surface: Some(v.clone()),
896                                    path: None,
897                                    geometry: Geometry::Solid(*solid_copy),
898                                },
899                            )],
900                            meta: vec![Metadata {
901                                source_range: tag.clone().into(),
902                            }],
903                        }
904                    };
905
906                    // update the sketch tags.
907                    sketch.merge_tags(Some(&tag_id).into_iter());
908
909                    if exec_state.stack().cur_frame_contains(&tag.name)? {
910                        exec_state.mut_stack().update(&tag.name, |v, _| {
911                            if let Some(existing_tag) = v.as_mut_tag() {
912                                existing_tag.merge_info(&tag_id);
913                            }
914                        })?;
915                    } else if might_be_legacy || !is_part_of_sketch {
916                        // The above condition is saying that we add a tag to
917                        // the stack in either of these cases:
918                        //
919                        // 1. It originates from a legacy sketch v1.
920                        //
921                        // 2. It originates from a sketch block and it's not
922                        // part of the sketch. Instead, it's part of the solid,
923                        // as in tagging a cap face `extrude(tagEnd, tagStart)`
924                        // or chamfer face `chamfer(tag)`.
925                        exec_state.mut_stack().add(
926                            tag.name.clone(),
927                            KclValue::TagIdentifier(Box::new(tag_id)),
928                            SourceRange::default(),
929                        )?;
930                    }
931                }
932            }
933
934            // Find the stale sketch in memory and update it.
935            if let Some(sketch) = value.sketch() {
936                if sketch.tags.is_empty() {
937                    return Ok(());
938                }
939                let sketch_tags: Vec<_> = sketch.tags.values().cloned().collect();
940                let sketches_to_update: Vec<_> = exec_state.stack().find_keys_in_current_env(|v| match v {
941                    KclValue::Sketch { value: sk } => sk.original_id == sketch.original_id,
942                    _ => false,
943                })?;
944
945                for k in sketches_to_update {
946                    exec_state.mut_stack().update(&k, |v, _| {
947                        if let Some(sketch) = v.as_mut_sketch() {
948                            sketch.merge_tags(sketch_tags.iter());
949                        }
950                    })?;
951                }
952            }
953        }
954        KclValue::Tuple { value, .. } | KclValue::HomArray { value, .. } => {
955            for v in value {
956                update_memory_for_tags_of_geometry(v, exec_state)?;
957            }
958        }
959        _ => {}
960    }
961    Ok(())
962}
963
964fn type_err_str(expected: &Type, found: &KclValue, source_range: &SourceRange, exec_state: &mut ExecState) -> String {
965    fn strip_backticks(s: &str) -> &str {
966        let mut result = s;
967        if s.starts_with('`') {
968            result = &result[1..]
969        }
970        if s.ends_with('`') {
971            result = &result[..result.len() - 1]
972        }
973        result
974    }
975
976    let expected_human = expected.human_friendly_type();
977    let expected_ty = expected.to_string();
978    let expected_str =
979        if expected_human == expected_ty || expected_human == format!("a value with type `{expected_ty}`") {
980            format!("a value with type `{expected_ty}`")
981        } else {
982            format!("{expected_human} (`{expected_ty}`)")
983        };
984    let found_human = found.human_friendly_type();
985    let found_ty = found.principal_type_string();
986    let found_str = if found_human == found_ty || found_human == format!("a {}", strip_backticks(&found_ty)) {
987        format!("a value with type {found_ty}")
988    } else {
989        format!("{found_human} (with type {found_ty})")
990    };
991
992    let mut result = format!("{expected_str}, but found {found_str}.");
993
994    if found.is_unknown_number() {
995        exec_state.clear_units_warnings(source_range);
996        result.push_str("\nThe found value is a number but has incomplete units information. You can probably fix this error by specifying the units using type ascription, e.g., `len: mm` or `(a * b): deg`.");
997    }
998
999    result
1000}
1001
1002/// Build the error message for a labeled argument whose label doesn't match any
1003/// parameter of the callee. Shared between keyword function calls and sketch
1004/// blocks so the wording stays consistent.
1005pub(crate) fn unexpected_kw_arg_message(label: &str, callee_name: Option<&str>) -> String {
1006    format!(
1007        "`{label}` is not an argument of {}",
1008        callee_name
1009            .map(|n| format!("`{n}`"))
1010            .unwrap_or_else(|| "this function".to_owned()),
1011    )
1012}
1013
1014/// Build the error message for a labeled argument whose parameter the callee
1015/// declares, but not on the KCL version governing this execution. Extends
1016/// [`unexpected_kw_arg_message`] with the version that made the parameter
1017/// unavailable and the version this program uses, so the user can tell a
1018/// version mismatch apart from a typo.
1019fn unavailable_kw_arg_message(
1020    label: &str,
1021    callee_name: Option<&str>,
1022    reason: ParamUnavailable<'_>,
1023    program_version: &str,
1024) -> String {
1025    let base = unexpected_kw_arg_message(label, callee_name);
1026    match reason {
1027        ParamUnavailable::NotYetAdded(added) => {
1028            format!("{base}; it was added in KCL {added}, but this program uses KCL {program_version}")
1029        }
1030        ParamUnavailable::Removed(removed) => {
1031            format!("{base}; it was removed in KCL {removed}, but this program uses KCL {program_version}")
1032        }
1033    }
1034}
1035
1036/// Fetch the definition-time resolution of a type written in a function
1037/// signature.
1038///
1039/// [`FunctionSource::resolve_signature_types`] runs whenever a function
1040/// declaration executes, so a written type without a stored resolution is a
1041/// bug in KCL, not in the user's program.
1042fn resolved_signature_type<'a>(
1043    resolved: Option<&'a RuntimeType>,
1044    written: &Type,
1045    source_range: SourceRange,
1046) -> Result<&'a RuntimeType, KclError> {
1047    resolved.ok_or_else(|| {
1048        KclError::new_internal(KclErrorDetails::new(
1049            format!(
1050                "The type `{written}` in this function's signature was not resolved when the function was declared. This is a bug in KCL and not in your code, please report this to Zoo."
1051            ),
1052            vec![source_range],
1053        ))
1054    })
1055}
1056
1057fn type_check_params_kw(
1058    fn_name: Option<&str>,
1059    fn_def: &FunctionSource,
1060    mut args: Args<Sugary>,
1061    exec_state: &mut ExecState,
1062) -> Result<Args<Desugared>, KclError> {
1063    let fn_name = fn_name.or(args.fn_name.as_deref());
1064    let mut result = Args::new_no_args(
1065        args.source_range,
1066        args.node_path.clone(),
1067        args.ctx,
1068        fn_name.map(|f| f.to_string()).or_else(|| args.fn_name.clone()),
1069    );
1070
1071    // If it's possible the input arg was meant to be labelled and we probably don't want to use
1072    // it as the input arg, then treat it as labelled.
1073    if let Some((Some(label), _)) = args.unlabeled.first()
1074        && args.unlabeled.len() == 1
1075        && (fn_def.input_arg.is_none() || args.pipe_value.is_some())
1076        && fn_def.active_named_arg(label, exec_state).is_some()
1077        && !args.labeled.contains_key(label)
1078    {
1079        let Some((label, arg)) = args.unlabeled.pop() else {
1080            let message = "Expected unlabeled arg to be present".to_owned();
1081            debug_assert!(false, "{}", &message);
1082            return Err(KclError::new_internal(KclErrorDetails::new(
1083                message,
1084                vec![args.source_range],
1085            )));
1086        };
1087        args.labeled.insert(label.unwrap(), arg);
1088    }
1089
1090    // Apply the `a == a: a` shorthand by desugaring unlabeled args into labeled ones.
1091    let (labeled_unlabeled, unlabeled_unlabeled) = args.unlabeled.into_iter().partition(|(l, _)| {
1092        if let Some(l) = l
1093            && fn_def.active_named_arg(l, exec_state).is_some()
1094            && !args.labeled.contains_key(l)
1095        {
1096            true
1097        } else {
1098            false
1099        }
1100    });
1101    args.unlabeled = unlabeled_unlabeled;
1102    for (l, arg) in labeled_unlabeled {
1103        let previous = args.labeled.insert(l.unwrap(), arg);
1104        debug_assert!(previous.is_none());
1105    }
1106
1107    if let Some((name, ty)) = &fn_def.input_arg {
1108        // Expecting an input arg
1109
1110        if args.unlabeled.is_empty() {
1111            // No args provided
1112
1113            if let Some(pipe) = args.pipe_value {
1114                // But there is a pipeline
1115                result.unlabeled = vec![(None, pipe)];
1116            } else if let Some(arg) = args.labeled.swap_remove(name) {
1117                // Mistakenly labelled
1118                exec_state.err(CompilationIssue::err(
1119                    arg.source_range,
1120                    format!(
1121                        "{} expects an unlabeled first argument (`@{name}`), but it is labelled in the call. You might try removing the `{name} = `",
1122                        fn_name
1123                            .map(|n| format!("The function `{n}`"))
1124                            .unwrap_or_else(|| "This function".to_owned()),
1125                    ),
1126                ));
1127                result.unlabeled = vec![(Some(name.clone()), arg)];
1128            } else {
1129                // Just missing
1130                return Err(KclError::new_argument(KclErrorDetails::new(
1131                    "This function expects an unlabeled first parameter, but you haven't passed it one.".to_owned(),
1132                    fn_def.ast.as_source_ranges(),
1133                )));
1134            }
1135        } else if args.unlabeled.len() == 1
1136            && let Some(unlabeled_arg) = args.unlabeled.pop()
1137        {
1138            let mut arg = unlabeled_arg.1;
1139            if let Some(ty) = ty {
1140                let rty = resolved_signature_type(fn_def.resolved_input_ty.as_ref(), ty, arg.source_range)?;
1141                arg.value = arg
1142                    .value
1143                    .coerce(rty, CoercionMode::implicit(), exec_state)
1144                    .map_err(|_| {
1145                        KclError::new_argument(KclErrorDetails::new(
1146                            format!(
1147                                "The input argument of {} requires {}",
1148                                fn_name
1149                                    .map(|n| format!("`{n}`"))
1150                                    .unwrap_or_else(|| "this function".to_owned()),
1151                                type_err_str(ty, &arg.value, &arg.source_range, exec_state),
1152                            ),
1153                            vec![arg.source_range],
1154                        ))
1155                    })?;
1156            }
1157            result.unlabeled = vec![(None, arg)]
1158        } else {
1159            // Multiple unlabelled args
1160
1161            // Try to un-spread args into an array
1162            if let Some(Type::Array { len, .. }) = ty {
1163                if len.satisfied(args.unlabeled.len(), false).is_none() {
1164                    exec_state.err(CompilationIssue::err(
1165                        args.source_range,
1166                        format!(
1167                            "{} expects an array input argument with {} elements",
1168                            fn_name
1169                                .map(|n| format!("The function `{n}`"))
1170                                .unwrap_or_else(|| "This function".to_owned()),
1171                            len.human_friendly_type(),
1172                        ),
1173                    ));
1174                }
1175
1176                let source_range = SourceRange::merge(args.unlabeled.iter().map(|(_, a)| a.source_range));
1177                exec_state.warn_experimental("array input arguments", source_range);
1178                result.unlabeled = vec![(
1179                    None,
1180                    Arg {
1181                        source_range,
1182                        value: KclValue::HomArray {
1183                            value: args.unlabeled.drain(..).map(|(_, a)| a.value).collect(),
1184                            ty: RuntimeType::any(),
1185                        },
1186                    },
1187                )]
1188            }
1189        }
1190    }
1191
1192    // Either we didn't move the arg above, or we're not expecting one.
1193    if !args.unlabeled.is_empty() {
1194        // Not expecting an input arg, but found one or more
1195        let actuals = args.labeled.keys();
1196        let formals: Vec<_> = fn_def
1197            .active_named_args(exec_state)
1198            .filter_map(|(name, _)| {
1199                if actuals.clone().any(|a| a == name) {
1200                    return None;
1201                }
1202
1203                Some(format!("`{name}`"))
1204            })
1205            .collect();
1206
1207        let suggestion = if formals.is_empty() {
1208            String::new()
1209        } else {
1210            format!("; suggested labels: {}", formals.join(", "))
1211        };
1212
1213        let mut errors = args.unlabeled.iter().map(|(_, arg)| {
1214            CompilationIssue::err(
1215                arg.source_range,
1216                format!("This argument needs a label, but it doesn't have one{suggestion}"),
1217            )
1218        });
1219
1220        let first = errors.next().unwrap();
1221        errors.for_each(|e| exec_state.err(e));
1222
1223        return Err(KclError::new_argument(first.into()));
1224    }
1225
1226    for (label, mut arg) in args.labeled {
1227        let param = fn_def.named_args.get(&label);
1228        match param.map(|param| (param, param.unavailable_reason(exec_state))) {
1229            Some((
1230                NamedParam {
1231                    experimental: _,
1232                    added_in: _,
1233                    deprecated: _,
1234                    deprecated_since: _,
1235                    removed_in: _,
1236                    default_value: def,
1237                    ty,
1238                    resolved_ty,
1239                },
1240                None,
1241            )) => {
1242                // For optional args, passing None should be the same as not passing an arg.
1243                if !(def.is_some() && matches!(arg.value, KclValue::KclNone { .. })) {
1244                    if let Some(ty) = ty {
1245                        let rty = resolved_signature_type(resolved_ty.as_ref(), ty, arg.source_range)?;
1246                        arg.value = arg
1247                                .value
1248                                .coerce(
1249                                    rty,
1250                                    CoercionMode::implicit(),
1251                                    exec_state,
1252                                )
1253                                .map_err(|e| {
1254                                    let mut message = format!(
1255                                        "{label} requires {}",
1256                                        type_err_str(ty, &arg.value, &arg.source_range, exec_state),
1257                                    );
1258                                    if let Some(ty) = e.explicit_coercion {
1259                                        // TODO if we have access to the AST for the argument we could choose which example to suggest.
1260                                        message = format!("{message}\n\nYou may need to add information about the type of the argument, for example:\n  using a numeric suffix: `42{ty}`\n  or using type ascription: `foo(): {ty}`");
1261                                    }
1262                                    KclError::new_argument(KclErrorDetails::new(
1263                                        message,
1264                                        vec![arg.source_range],
1265                                    ))
1266                                })?;
1267                    }
1268                    result.labeled.insert(label, arg);
1269                }
1270            }
1271            Some((_, Some(reason))) => {
1272                let message = unavailable_kw_arg_message(&label, fn_name, reason, exec_state.kcl_version().as_str());
1273                exec_state.err(CompilationIssue::err(arg.source_range, message));
1274            }
1275            None => {
1276                exec_state.err(CompilationIssue::err(
1277                    arg.source_range,
1278                    unexpected_kw_arg_message(&label, fn_name),
1279                ));
1280            }
1281        }
1282    }
1283
1284    let consumed_solid_arg_check = fn_def
1285        .std_props
1286        .as_ref()
1287        .map_or(ConsumedSolidArgCheck::Error, |props| props.consumed_solid_arg_check);
1288    if matches!(fn_def.body, FunctionBody::Rust(_))
1289        && let Some(props) = fn_def.std_props.as_ref()
1290    {
1291        match props.region_behavior.stale_region_policy() {
1292            Some(StaleRegionPolicy::Error) => validate_region_args_not_consumed(&result, exec_state)?,
1293            Some(StaleRegionPolicy::Warning) => {
1294                warn_if_region_args_consumed(&result, exec_state, &props.name)?;
1295            }
1296            None => {}
1297        }
1298    }
1299    match consumed_solid_arg_check {
1300        ConsumedSolidArgCheck::Error => {
1301            result
1302                .unlabeled
1303                .iter()
1304                .map(|(_, arg)| arg)
1305                .chain(result.labeled.values())
1306                .try_for_each(|arg| validate_value_not_consumed(&arg.value, exec_state, arg.source_range))?;
1307        }
1308        ConsumedSolidArgCheck::WarnDeprecated => {
1309            let std_fn_name = fn_def
1310                .std_props
1311                .as_ref()
1312                .map(|props| props.name.as_str())
1313                .unwrap_or("function");
1314            for arg in result
1315                .unlabeled
1316                .iter()
1317                .map(|(_, arg)| arg)
1318                .chain(result.labeled.values())
1319            {
1320                warn_if_value_consumed_for_deprecated_call(&arg.value, exec_state, arg.source_range, std_fn_name)?;
1321            }
1322        }
1323    }
1324
1325    Ok(result)
1326}
1327
1328pub(super) fn assign_args_to_params_kw(
1329    fn_def: &FunctionSource,
1330    args: Args<Desugared>,
1331    exec_state: &mut ExecState,
1332) -> Result<(), KclError> {
1333    // Add the arguments to the memory.  A new call frame should have already
1334    // been created.
1335    let source_ranges = fn_def.ast.as_source_ranges();
1336
1337    for (name, param) in fn_def.named_args.iter() {
1338        let arg = args.labeled.get(name);
1339        match arg {
1340            Some(arg) => {
1341                exec_state.mut_stack().add(
1342                    name.clone(),
1343                    arg.value.clone(),
1344                    arg.source_ranges().pop().unwrap_or(SourceRange::synthetic()),
1345                )?;
1346            }
1347            None => match &param.default_value {
1348                Some(default_val) => {
1349                    let value = KclValue::from_default_param(default_val.clone(), exec_state);
1350                    exec_state
1351                        .mut_stack()
1352                        .add(name.clone(), value, default_val.source_range())?;
1353                }
1354                None => {
1355                    return Err(KclError::new_argument(KclErrorDetails::new(
1356                        format!("This function requires a parameter {name}, but you haven't passed it one."),
1357                        source_ranges,
1358                    )));
1359                }
1360            },
1361        }
1362    }
1363
1364    if let Some((param_name, _)) = &fn_def.input_arg {
1365        let Some(unlabeled) = args.unlabeled_kw_arg_unconverted() else {
1366            debug_assert!(false, "Bad args");
1367            return Err(KclError::new_internal(KclErrorDetails::new(
1368                "Desugared arguments are inconsistent".to_owned(),
1369                source_ranges,
1370            )));
1371        };
1372        exec_state.mut_stack().add(
1373            param_name.clone(),
1374            unlabeled.value.clone(),
1375            unlabeled.source_ranges().pop().unwrap_or(SourceRange::synthetic()),
1376        )?;
1377    }
1378
1379    Ok(())
1380}
1381
1382fn coerce_result_type(
1383    result: Result<Option<KclValue>, KclError>,
1384    fn_def: &FunctionSource,
1385    exec_state: &mut ExecState,
1386) -> Result<Option<KclValue>, KclError> {
1387    let result = result?;
1388
1389    let Some(ret_ty) = &fn_def.return_type else {
1390        return Ok(result);
1391    };
1392
1393    let ty = resolved_signature_type(
1394        fn_def.resolved_return_ty.as_ref(),
1395        &ret_ty.inner,
1396        ret_ty.as_source_range(),
1397    )?;
1398
1399    // `never` describes the absence of normal completion, so either successful
1400    // result shape violates the function's declared contract.
1401    if ty.subtype(&RuntimeType::never()) {
1402        let message = if result.is_some() {
1403            "This function returned a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1404        } else {
1405            "This function completed without returning a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1406        };
1407        return Err(KclError::new_type(KclErrorDetails::new(
1408            message.to_owned(),
1409            ret_ty.as_source_ranges(),
1410        )));
1411    }
1412
1413    let Some(val) = result else {
1414        return Ok(None);
1415    };
1416
1417    let val = val.coerce(ty, CoercionMode::implicit(), exec_state).map_err(|_| {
1418        KclError::new_type(KclErrorDetails::new(
1419            format!(
1420                "This function requires its result to be {}",
1421                type_err_str(ret_ty, &val, &(&val).into(), exec_state)
1422            ),
1423            ret_ty.as_source_ranges(),
1424        ))
1425    })?;
1426    Ok(Some(val))
1427}
1428
1429#[cfg(test)]
1430mod test {
1431    use std::sync::Arc;
1432
1433    use super::*;
1434    use crate::engine::engine_manager::EngineManager;
1435    use crate::errors::Severity;
1436    use crate::execution::ContextType;
1437    use crate::execution::EnvironmentRef;
1438    use crate::execution::ExecTestResults;
1439    use crate::execution::memory::Stack;
1440    use crate::execution::parse_execute;
1441    use crate::execution::types::NumericType;
1442    use crate::execution::types::NumericTypeExt;
1443    use crate::parsing::ast::types::DefaultParamVal;
1444    use crate::parsing::ast::types::FunctionExpression;
1445    use crate::parsing::ast::types::Identifier;
1446    use crate::parsing::ast::types::Parameter;
1447    use crate::parsing::ast::types::Program;
1448
1449    fn source_texts<'a>(program: &'a str, error: &KclError) -> Vec<&'a str> {
1450        error
1451            .source_ranges()
1452            .into_iter()
1453            .map(|range| &program[range.start()..range.end()])
1454            .collect()
1455    }
1456
1457    fn get_var(result: &ExecTestResults, name: &str) -> KclValue {
1458        result
1459            .exec_state
1460            .stack()
1461            .memory
1462            .get_from_owned(name, result.mem_env, SourceRange::default(), 0)
1463            .unwrap_or_else(|err| panic!("expected variable `{name}` to exist: {err:?}"))
1464    }
1465
1466    fn var_exists(result: &ExecTestResults, name: &str) -> bool {
1467        result
1468            .exec_state
1469            .stack()
1470            .memory
1471            .get_from_owned(name, result.mem_env, SourceRange::default(), 0)
1472            .is_ok()
1473    }
1474
1475    fn assert_vars_are_tags(result: &ExecTestResults, names: &[&str]) {
1476        for name in names {
1477            assert!(
1478                matches!(get_var(result, name), KclValue::TagIdentifier(_)),
1479                "expected variable `{name}` to be a tag identifier"
1480            );
1481        }
1482    }
1483
1484    fn assert_vars_are_missing(result: &ExecTestResults, names: &[&str]) {
1485        for name in names {
1486            assert!(!var_exists(result, name), "expected variable `{name}` to be absent");
1487        }
1488    }
1489
1490    fn assert_body_face_tags(result: &ExecTestResults, expected: &[&str], unexpected: &[&str]) {
1491        let body = get_var(result, "body");
1492        let KclValue::Solid { value: body } = body else {
1493            panic!("expected `body` to be a solid");
1494        };
1495
1496        for tag in expected {
1497            assert!(body.faces.contains_key(*tag), "expected body.faces to contain `{tag}`");
1498        }
1499
1500        for tag in unexpected {
1501            assert!(
1502                !body.faces.contains_key(*tag),
1503                "expected body.faces not to contain sketch tag `{tag}`"
1504            );
1505        }
1506    }
1507
1508    fn deprecated_solid_tag_access_warnings(result: &ExecTestResults) -> Vec<&CompilationIssue> {
1509        result
1510            .exec_state
1511            .issues()
1512            .iter()
1513            .filter(|issue| issue.message.contains("Accessing solid-created face"))
1514            .collect()
1515    }
1516
1517    #[tokio::test(flavor = "multi_thread")]
1518    async fn test_assign_args_to_params() {
1519        // Set up a little framework for this test.
1520        fn mem(number: usize) -> KclValue {
1521            KclValue::Number {
1522                value: number as f64,
1523                ty: NumericType::count(),
1524                meta: Default::default(),
1525            }
1526        }
1527        fn ident(s: &'static str) -> Node<Identifier> {
1528            Node::no_src(Identifier {
1529                name: s.to_owned(),
1530                digest: None,
1531            })
1532        }
1533        fn opt_param(s: &'static str) -> Parameter {
1534            Parameter {
1535                experimental: false,
1536                added_in: None,
1537                deprecated: false,
1538                deprecated_since: None,
1539                removed_in: None,
1540                identifier: ident(s),
1541                param_type: None,
1542                default_value: Some(DefaultParamVal::none()),
1543                labeled: true,
1544                digest: None,
1545            }
1546        }
1547        fn req_param(s: &'static str) -> Parameter {
1548            Parameter {
1549                experimental: false,
1550                added_in: None,
1551                deprecated: false,
1552                deprecated_since: None,
1553                removed_in: None,
1554                identifier: ident(s),
1555                param_type: None,
1556                default_value: None,
1557                labeled: true,
1558                digest: None,
1559            }
1560        }
1561        fn additional_program_memory(items: &[(String, KclValue)]) -> Stack {
1562            let mut program_memory = Stack::new_for_tests();
1563            for (name, item) in items {
1564                program_memory
1565                    .add(name.clone(), item.clone(), SourceRange::default())
1566                    .unwrap();
1567            }
1568            program_memory
1569        }
1570        // Declare the test cases.
1571        for (test_name, params, args, expected) in [
1572            ("empty", Vec::new(), Vec::new(), Ok(additional_program_memory(&[]))),
1573            (
1574                "all params required, and all given, should be OK",
1575                vec![req_param("x")],
1576                vec![("x", mem(1))],
1577                Ok(additional_program_memory(&[("x".to_owned(), mem(1))])),
1578            ),
1579            (
1580                "all params required, none given, should error",
1581                vec![req_param("x")],
1582                vec![],
1583                Err(KclError::new_argument(KclErrorDetails::new(
1584                    "This function requires a parameter x, but you haven't passed it one.".to_owned(),
1585                    vec![SourceRange::default()],
1586                ))),
1587            ),
1588            (
1589                "all params optional, none given, should be OK",
1590                vec![opt_param("x")],
1591                vec![],
1592                Ok(additional_program_memory(&[("x".to_owned(), KclValue::none())])),
1593            ),
1594            (
1595                "mixed params, too few given",
1596                vec![req_param("x"), opt_param("y")],
1597                vec![],
1598                Err(KclError::new_argument(KclErrorDetails::new(
1599                    "This function requires a parameter x, but you haven't passed it one.".to_owned(),
1600                    vec![SourceRange::default()],
1601                ))),
1602            ),
1603            (
1604                "mixed params, minimum given, should be OK",
1605                vec![req_param("x"), opt_param("y")],
1606                vec![("x", mem(1))],
1607                Ok(additional_program_memory(&[
1608                    ("x".to_owned(), mem(1)),
1609                    ("y".to_owned(), KclValue::none()),
1610                ])),
1611            ),
1612            (
1613                "mixed params, maximum given, should be OK",
1614                vec![req_param("x"), opt_param("y")],
1615                vec![("x", mem(1)), ("y", mem(2))],
1616                Ok(additional_program_memory(&[
1617                    ("x".to_owned(), mem(1)),
1618                    ("y".to_owned(), mem(2)),
1619                ])),
1620            ),
1621        ] {
1622            // Run each test.
1623            let func_expr = Node::no_src(FunctionExpression {
1624                name: None,
1625                params,
1626                body: Program::empty(),
1627                return_type: None,
1628                digest: None,
1629            });
1630            let func_src = FunctionSource::kcl(
1631                crate::parsing::ast::types::BoxNode::new(func_expr),
1632                EnvironmentRef::dummy(),
1633                crate::execution::kcl_value::KclFunctionSourceParams {
1634                    std_props: None,
1635                    experimental: false,
1636                    include_in_feature_tree: false,
1637                },
1638            );
1639            let labeled = args
1640                .iter()
1641                .map(|(name, value)| {
1642                    let arg = Arg::new(value.clone(), SourceRange::default());
1643                    ((*name).to_owned(), arg)
1644                })
1645                .collect::<IndexMap<_, _>>();
1646            let exec_ctxt = ExecutorContext {
1647                engine: Arc::new(EngineManager::new_mock()),
1648                engine_batch: crate::engine::EngineBatchContext::default(),
1649                fs: crate::fs::new_file_system_handle(crate::fs::FileManager::new()),
1650                settings: Default::default(),
1651                context_type: ContextType::Mock,
1652                execution_callbacks: Default::default(),
1653                executor_kind: crate::execution::machine::ExecutorKind::resolve(),
1654                machine_call_depth_limit: crate::execution::machine::DEFAULT_MACHINE_CALL_DEPTH_LIMIT,
1655            };
1656            let mut exec_state = ExecState::new(&exec_ctxt);
1657            exec_state.mod_local.stack = Stack::new_for_tests();
1658
1659            let args = Args {
1660                fn_name: Some("test".to_owned()),
1661                labeled,
1662                unlabeled: Vec::new(),
1663                source_range: SourceRange::default(),
1664                node_path: None,
1665                ctx: exec_ctxt,
1666                pipe_value: None,
1667                _status: std::marker::PhantomData,
1668            };
1669
1670            let actual = assign_args_to_params_kw(&func_src, args, &mut exec_state).map(|_| exec_state.mod_local.stack);
1671            assert_eq!(
1672                actual, expected,
1673                "failed test '{test_name}':\ngot {actual:?}\nbut expected\n{expected:?}"
1674            );
1675        }
1676    }
1677
1678    #[tokio::test(flavor = "multi_thread")]
1679    async fn type_check_user_args() {
1680        let program = r#"fn makeMessage(prefix: string, suffix: string) {
1681  return prefix + suffix
1682}
1683
1684msg1 = makeMessage(prefix = "world", suffix = " hello")
1685msg2 = makeMessage(prefix = 1, suffix = 3)"#;
1686        let err = parse_execute(program).await.unwrap_err();
1687        assert_eq!(
1688            err.message(),
1689            "prefix requires a value with type `string`, but found a value with type `number`.\nThe found value is a number but has incomplete units information. You can probably fix this error by specifying the units using type ascription, e.g., `len: mm` or `(a * b): deg`."
1690        )
1691    }
1692
1693    #[tokio::test(flavor = "multi_thread")]
1694    async fn never_function_cannot_return_a_value() {
1695        let program = r#"@settings(experimentalFeatures = allow)
1696fn bad(): never {
1697  return 42
1698}
1699
1700bad()
1701"#;
1702        let err = parse_execute(program).await.unwrap_err();
1703
1704        assert!(matches!(&err, KclError::Type { .. }));
1705        assert_eq!(
1706            err.message(),
1707            "This function returned a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1708        );
1709    }
1710
1711    #[tokio::test(flavor = "multi_thread")]
1712    async fn never_function_cannot_fall_through() {
1713        let program = r#"@settings(experimentalFeatures = allow)
1714fn alsoBad(): never {
1715  x = 42
1716}
1717
1718alsoBad()
1719"#;
1720        let err = parse_execute(program).await.unwrap_err();
1721
1722        assert!(matches!(&err, KclError::Type { .. }));
1723        assert_eq!(
1724            err.message(),
1725            "This function completed without returning a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1726        );
1727    }
1728
1729    #[tokio::test(flavor = "multi_thread")]
1730    async fn never_union_function_cannot_return_a_value() {
1731        let program = r#"@settings(experimentalFeatures = allow)
1732fn bad(): never | never {
1733  return 42
1734}
1735
1736bad()
1737"#;
1738        let err = parse_execute(program).await.unwrap_err();
1739
1740        assert!(matches!(&err, KclError::Type { .. }));
1741        assert_eq!(
1742            err.message(),
1743            "This function returned a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1744        );
1745    }
1746
1747    #[tokio::test(flavor = "multi_thread")]
1748    async fn never_union_function_cannot_fall_through() {
1749        let program = r#"@settings(experimentalFeatures = allow)
1750fn alsoBad(): never | never {
1751  x = 42
1752}
1753
1754alsoBad()
1755"#;
1756        let err = parse_execute(program).await.unwrap_err();
1757
1758        assert!(matches!(&err, KclError::Type { .. }));
1759        assert_eq!(
1760            err.message(),
1761            "This function completed without returning a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1762        );
1763    }
1764
1765    #[tokio::test(flavor = "multi_thread")]
1766    async fn never_function_contract_is_path_dependent() {
1767        let function = r#"@settings(experimentalFeatures = allow)
1768fn failOrReturn(@shouldFail: bool): never {
1769  return if shouldFail {
1770    fail("requested failure")
1771  } else {
1772    42
1773  }
1774}
1775"#;
1776
1777        let err = parse_execute(&format!("{function}\nfailOrReturn(true)\n"))
1778            .await
1779            .unwrap_err();
1780        assert!(matches!(&err, KclError::UserDefined { .. }));
1781        assert_eq!(err.message(), "requested failure");
1782
1783        let err = parse_execute(&format!("{function}\nfailOrReturn(false)\n"))
1784            .await
1785            .unwrap_err();
1786        assert!(matches!(&err, KclError::Type { .. }));
1787        assert_eq!(
1788            err.message(),
1789            "This function returned a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1790        );
1791    }
1792
1793    #[tokio::test(flavor = "multi_thread")]
1794    async fn never_type_alias_contract_is_path_dependent() {
1795        let function = r#"@settings(experimentalFeatures = allow)
1796type impossible = never
1797fn failOrReturn(@shouldFail: bool): impossible {
1798  return if shouldFail {
1799    fail("requested failure")
1800  } else {
1801    42
1802  }
1803}
1804"#;
1805
1806        let err = parse_execute(&format!("{function}\nfailOrReturn(true)\n"))
1807            .await
1808            .unwrap_err();
1809        assert!(matches!(&err, KclError::UserDefined { .. }));
1810        assert_eq!(err.message(), "requested failure");
1811
1812        let err = parse_execute(&format!("{function}\nfailOrReturn(false)\n"))
1813            .await
1814            .unwrap_err();
1815        assert!(matches!(&err, KclError::Type { .. }));
1816        assert_eq!(
1817            err.message(),
1818            "This function returned a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1819        );
1820    }
1821
1822    #[tokio::test(flavor = "multi_thread")]
1823    async fn union_with_never_can_return_a_value_or_fail() {
1824        let function = r#"@settings(experimentalFeatures = allow)
1825fn stringOrFail(@shouldFail: bool): string | never {
1826  return if shouldFail {
1827    fail("requested failure")
1828  } else {
1829    "ok"
1830  }
1831}
1832"#;
1833
1834        let result = parse_execute(&format!("{function}\nresult = stringOrFail(false)\n"))
1835            .await
1836            .unwrap();
1837        let KclValue::String { value, .. } = get_var(&result, "result") else {
1838            panic!("expected `result` to be a string")
1839        };
1840        assert_eq!(value, "ok");
1841
1842        let err = parse_execute(&format!("{function}\nstringOrFail(true)\n"))
1843            .await
1844            .unwrap_err();
1845        assert!(matches!(&err, KclError::UserDefined { .. }));
1846        assert_eq!(err.message(), "requested failure");
1847    }
1848
1849    #[tokio::test(flavor = "multi_thread")]
1850    async fn fail_reports_user_defined_message_and_callsite_once() {
1851        let program = r#"@settings(experimentalFeatures = allow)
1852fail("custom failure")
1853"#;
1854
1855        let err = parse_execute(program).await.unwrap_err();
1856
1857        assert!(matches!(&err, KclError::UserDefined { .. }));
1858        assert_eq!(err.message(), "custom failure");
1859        assert_eq!(err.get_message(), "user-defined: custom failure");
1860        assert_eq!(serde_json::to_value(&err).unwrap()["kind"], "user_defined");
1861        assert_eq!(source_texts(program, &err), [r#"fail("custom failure")"#]);
1862        assert_eq!(err.backtrace().len(), 1);
1863    }
1864
1865    #[tokio::test(flavor = "multi_thread")]
1866    async fn fail_unwinds_through_nested_never_functions_once() {
1867        let program = r#"@settings(experimentalFeatures = allow)
1868fn inner(): never {
1869  fail("nested failure")
1870}
1871
1872fn outer(): never {
1873  inner()
1874}
1875
1876outer()
1877"#;
1878
1879        let err = parse_execute(program).await.unwrap_err();
1880
1881        assert!(matches!(&err, KclError::UserDefined { .. }));
1882        assert_eq!(err.message(), "nested failure");
1883        assert_eq!(
1884            source_texts(program, &err),
1885            [r#"fail("nested failure")"#, "inner()", "outer()"]
1886        );
1887        assert_eq!(
1888            err.backtrace()
1889                .iter()
1890                .map(|item| item.fn_name.as_deref())
1891                .collect::<Vec<_>>(),
1892            [Some("inner"), Some("outer"), None]
1893        );
1894    }
1895
1896    #[tokio::test(flavor = "multi_thread")]
1897    async fn fail_is_valid_in_a_function_with_a_value_return_type() {
1898        let function = r#"@settings(experimentalFeatures = allow)
1899fn valueOrFail(@shouldFail: bool): number {
1900  return if shouldFail {
1901    fail("no value")
1902  } else {
1903    42
1904  }
1905}
1906"#;
1907
1908        parse_execute(&format!("{function}\nresult = valueOrFail(false)\n"))
1909            .await
1910            .unwrap();
1911
1912        let err = parse_execute(&format!("{function}\nvalueOrFail(true)\n"))
1913            .await
1914            .unwrap_err();
1915        assert!(matches!(&err, KclError::UserDefined { .. }));
1916        assert_eq!(err.message(), "no value");
1917    }
1918
1919    #[tokio::test(flavor = "multi_thread")]
1920    async fn never_function_with_fail_or_fallthrough_is_path_dependent() {
1921        let function = r#"@settings(experimentalFeatures = allow)
1922fn failOrFallThrough(@shouldFail: bool): never {
1923  result = if shouldFail {
1924    fail("requested failure")
1925  } else {
1926    42
1927  }
1928}
1929"#;
1930
1931        let err = parse_execute(&format!("{function}\nfailOrFallThrough(true)\n"))
1932            .await
1933            .unwrap_err();
1934        assert!(matches!(&err, KclError::UserDefined { .. }));
1935        assert_eq!(err.message(), "requested failure");
1936
1937        let err = parse_execute(&format!("{function}\nfailOrFallThrough(false)\n"))
1938            .await
1939            .unwrap_err();
1940        assert!(matches!(&err, KclError::Type { .. }));
1941        assert_eq!(
1942            err.message(),
1943            "This function completed without returning a value, but its return type is `never`. A function with return type `never` must stop evaluation abnormally. You may want to use `fail(...)` to stop evaluation and provide a message."
1944        );
1945    }
1946
1947    #[tokio::test(flavor = "multi_thread")]
1948    async fn fail_argument_evaluation_errors_take_precedence() {
1949        let program = r#"@settings(experimentalFeatures = allow)
1950fn stop(): never {
1951  fail(missingMessage)
1952}
1953
1954stop()
1955"#;
1956
1957        let err = parse_execute(program).await.unwrap_err();
1958
1959        assert!(matches!(&err, KclError::UndefinedValue { .. }));
1960        assert_eq!(err.message(), "`missingMessage` is not defined");
1961        assert_eq!(source_texts(program, &err), ["missingMessage", "stop()"]);
1962    }
1963
1964    #[tokio::test(flavor = "multi_thread")]
1965    async fn fail_rejects_invalid_message_arguments_before_invocation() {
1966        for program in [
1967            "@settings(experimentalFeatures = allow)\nfail()\n",
1968            "@settings(experimentalFeatures = allow)\nfail(42)\n",
1969        ] {
1970            let err = parse_execute(program).await.unwrap_err();
1971            assert!(matches!(&err, KclError::Argument { .. }), "{err:?}");
1972        }
1973    }
1974
1975    #[tokio::test(flavor = "multi_thread")]
1976    async fn map_closure_error_mentions_fn_name() {
1977        let program = r#"
1978arr = ["hello"]
1979map(array = arr, f = fn(@item: number) { return item })
1980"#;
1981        let err = parse_execute(program).await.unwrap_err();
1982        assert!(
1983            err.message().contains("map closure"),
1984            "expected map closure errors to include the closure name, got: {}",
1985            err.message()
1986        );
1987    }
1988
1989    #[tokio::test(flavor = "multi_thread")]
1990    async fn array_input_arg() {
1991        let ast = r#"fn f(@input: [mm]) { return 1 }
1992f([1, 2, 3])
1993f(1, 2, 3)
1994"#;
1995        parse_execute(ast).await.unwrap();
1996    }
1997
1998    #[tokio::test(flavor = "multi_thread")]
1999    async fn extrude_tagged_body_gets_face_tags_and_keeps_legacy_bindings() {
2000        let program = r#"@settings(kclVersion = 2.0)
2001profile = sketch(on = XY) {
2002  line1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
2003  line2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 10mm])
2004  line3 = line(start = [var 10mm, var 10mm], end = [var 0mm, var 10mm])
2005  line4 = line(start = [var 0mm, var 10mm], end = [var 0mm, var 0mm])
2006  coincident([line1.end, line2.start])
2007  coincident([line2.end, line3.start])
2008  coincident([line3.end, line4.start])
2009  coincident([line4.end, line1.start])
2010}
2011region1 = region(point = [5mm, 5mm], sketch = profile)
2012
2013body = extrude(region1, length = 5mm, tagStart = $bottom, tagEnd = $top)
2014bottomFromBody = body.faces.bottom
2015topFromBody = body.faces.top
2016lineFromSketch = region1.tags.line1
2017legacyBottom = bottom
2018legacyTop = top
2019"#;
2020
2021        let result = parse_execute(program).await.unwrap();
2022        assert_body_face_tags(&result, &["bottom", "top"], &["line1"]);
2023        assert_vars_are_tags(
2024            &result,
2025            &[
2026                "bottom",
2027                "top",
2028                "bottomFromBody",
2029                "topFromBody",
2030                "lineFromSketch",
2031                "legacyBottom",
2032                "legacyTop",
2033            ],
2034        );
2035        assert_vars_are_missing(&result, &["line1"]);
2036    }
2037
2038    #[tokio::test(flavor = "multi_thread")]
2039    async fn extrude_without_tag_arguments_does_not_get_face_tags() {
2040        let program = r#"@settings(kclVersion = 2.0)
2041profile = sketch(on = XY) {
2042  line1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
2043  line2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 10mm])
2044  line3 = line(start = [var 10mm, var 10mm], end = [var 0mm, var 10mm])
2045  line4 = line(start = [var 0mm, var 10mm], end = [var 0mm, var 0mm])
2046  coincident([line1.end, line2.start])
2047  coincident([line2.end, line3.start])
2048  coincident([line3.end, line4.start])
2049  coincident([line4.end, line1.start])
2050}
2051region1 = region(point = [5mm, 5mm], sketch = profile)
2052
2053body = extrude(region1, length = 5mm)
2054"#;
2055
2056        let result = parse_execute(program).await.unwrap();
2057        let body = get_var(&result, "body");
2058        let KclValue::Solid { value: body } = body else {
2059            panic!("expected `body` to be a solid");
2060        };
2061
2062        assert!(
2063            body.faces.is_empty(),
2064            "body faces should only be populated for tagged calls"
2065        );
2066    }
2067
2068    #[tokio::test(flavor = "multi_thread")]
2069    async fn revolve_tagged_body_gets_face_tags() {
2070        let program = r#"@settings(kclVersion = 2.0)
2071profile = sketch(on = XY) {
2072  side = line(start = [var 5mm, var 0mm], end = [var 5mm, var 10mm])
2073  line2 = line(start = [var 5mm, var 10mm], end = [var 6mm, var 10mm])
2074  line3 = line(start = [var 6mm, var 10mm], end = [var 6mm, var 0mm])
2075  line4 = line(start = [var 6mm, var 0mm], end = [var 5mm, var 0mm])
2076  coincident([side.end, line2.start])
2077  coincident([line2.end, line3.start])
2078  coincident([line3.end, line4.start])
2079  coincident([line4.end, side.start])
2080}
2081region1 = region(point = [5.5mm, 5mm], sketch = profile)
2082
2083body = revolve(region1, axis = Y, angle = 90deg, tagStart = $startCap, tagEnd = $endCap)
2084startFromBody = body.faces.startCap
2085endFromBody = body.faces.endCap
2086sideFromSketch = region1.tags.side
2087legacyStart = startCap
2088legacyEnd = endCap
2089"#;
2090
2091        let result = parse_execute(program).await.unwrap();
2092        assert_body_face_tags(&result, &["startCap", "endCap"], &["side"]);
2093        assert_vars_are_tags(
2094            &result,
2095            &[
2096                "startCap",
2097                "endCap",
2098                "startFromBody",
2099                "endFromBody",
2100                "sideFromSketch",
2101                "legacyStart",
2102                "legacyEnd",
2103            ],
2104        );
2105        assert_vars_are_missing(&result, &["side"]);
2106    }
2107
2108    #[tokio::test(flavor = "multi_thread")]
2109    async fn sweep_tagged_body_gets_face_tags() {
2110        let program = r#"@settings(kclVersion = 2.0)
2111profile = sketch(on = XZ) {
2112  edge1 = line(start = [var 0mm, var 0mm], end = [var 2mm, var 0mm])
2113  edge2 = line(start = [var 2mm, var 0mm], end = [var 2mm, var 2mm])
2114  edge3 = line(start = [var 2mm, var 2mm], end = [var 0mm, var 2mm])
2115  edge4 = line(start = [var 0mm, var 2mm], end = [var 0mm, var 0mm])
2116  coincident([edge1.end, edge2.start])
2117  coincident([edge2.end, edge3.start])
2118  coincident([edge3.end, edge4.start])
2119  coincident([edge4.end, edge1.start])
2120}
2121profileRegion = region(point = [1mm, 1mm], sketch = profile)
2122
2123pathSketch = sketch(on = offsetPlane(YZ, offset = -2mm)) {
2124  pathLine = line(start = [var 0mm, var 0mm], end = [var 0mm, var 5mm])
2125}
2126
2127body = sweep(profileRegion, path = pathSketch.pathLine, tagStart = $startCap, tagEnd = $endCap)
2128startFromBody = body.faces.startCap
2129endFromBody = body.faces.endCap
2130edgeFromSketch = profileRegion.tags.edge1
2131pathFromSketch = pathSketch.pathLine
2132legacyStart = startCap
2133legacyEnd = endCap
2134"#;
2135
2136        let result = parse_execute(program).await.unwrap();
2137        assert_body_face_tags(&result, &["startCap", "endCap"], &["edge1", "pathLine"]);
2138        assert_vars_are_tags(
2139            &result,
2140            &[
2141                "startCap",
2142                "endCap",
2143                "startFromBody",
2144                "endFromBody",
2145                "edgeFromSketch",
2146                "legacyStart",
2147                "legacyEnd",
2148            ],
2149        );
2150        assert_vars_are_missing(&result, &["edge1", "pathLine"]);
2151    }
2152
2153    #[tokio::test(flavor = "multi_thread")]
2154    async fn loft_tagged_body_gets_face_tags() {
2155        let program = r#"@settings(kclVersion = 2.0)
2156lowerProfile = sketch(on = XY) {
2157  edge1 = line(start = [var 0mm, var 0mm], end = [var 6mm, var 0mm])
2158  edge2 = line(start = [var 6mm, var 0mm], end = [var 6mm, var 4mm])
2159  edge3 = line(start = [var 6mm, var 4mm], end = [var 0mm, var 4mm])
2160  edge4 = line(start = [var 0mm, var 4mm], end = [var 0mm, var 0mm])
2161  coincident([edge1.end, edge2.start])
2162  coincident([edge2.end, edge3.start])
2163  coincident([edge3.end, edge4.start])
2164  coincident([edge4.end, edge1.start])
2165}
2166lowerRegion = region(point = [3mm, 2mm], sketch = lowerProfile)
2167
2168upperProfile = sketch(on = offsetPlane(XY, offset = 8mm)) {
2169  edge5 = line(start = [var 1mm, var 1mm], end = [var 5mm, var 1mm])
2170  edge6 = line(start = [var 5mm, var 1mm], end = [var 4mm, var 3mm])
2171  edge7 = line(start = [var 4mm, var 3mm], end = [var 2mm, var 3mm])
2172  edge8 = line(start = [var 2mm, var 3mm], end = [var 1mm, var 1mm])
2173  coincident([edge5.end, edge6.start])
2174  coincident([edge6.end, edge7.start])
2175  coincident([edge7.end, edge8.start])
2176  coincident([edge8.end, edge5.start])
2177}
2178upperRegion = region(point = [3mm, 2mm], sketch = upperProfile)
2179
2180body = loft([lowerRegion, upperRegion], tagStart = $startCap, tagEnd = $endCap)
2181startFromBody = body.faces.startCap
2182endFromBody = body.faces.endCap
2183edgeFromSketch = lowerRegion.tags.edge1
2184legacyStart = startCap
2185legacyEnd = endCap
2186"#;
2187
2188        let result = parse_execute(program).await.unwrap();
2189        assert_body_face_tags(&result, &["startCap", "endCap"], &["edge1"]);
2190        assert_vars_are_tags(
2191            &result,
2192            &[
2193                "startCap",
2194                "endCap",
2195                "startFromBody",
2196                "endFromBody",
2197                "edgeFromSketch",
2198                "legacyStart",
2199                "legacyEnd",
2200            ],
2201        );
2202        assert_vars_are_missing(&result, &["edge1"]);
2203    }
2204
2205    #[tokio::test(flavor = "multi_thread")]
2206    async fn chamfer_tagged_body_gets_face_tags() {
2207        let program = r#"@settings(kclVersion = 2.0)
2208profile = sketch(on = XY) {
2209  edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
2210  edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 10mm])
2211  edge3 = line(start = [var 10mm, var 10mm], end = [var 0mm, var 10mm])
2212  edge4 = line(start = [var 0mm, var 10mm], end = [var 0mm, var 0mm])
2213  coincident([edge1.end, edge2.start])
2214  coincident([edge2.end, edge3.start])
2215  coincident([edge3.end, edge4.start])
2216  coincident([edge4.end, edge1.start])
2217}
2218profileRegion = region(point = [5mm, 5mm], sketch = profile)
2219
2220base = extrude(profileRegion, length = 5mm, tagEnd = $top)
2221body = chamfer(base, tags = getCommonEdge(faces = [profileRegion.tags.edge1, top]), length = 1mm, tag = $chamferFace)
2222chamferFromBody = body.faces.chamferFace
2223topFromBody = body.faces.top
2224edgeFromSketch = profileRegion.tags.edge1
2225legacyChamfer = chamferFace
2226legacyTop = top
2227"#;
2228
2229        let result = parse_execute(program).await.unwrap();
2230        assert_body_face_tags(&result, &["top", "chamferFace"], &["edge1"]);
2231        assert_vars_are_tags(
2232            &result,
2233            &[
2234                "top",
2235                "chamferFace",
2236                "chamferFromBody",
2237                "topFromBody",
2238                "edgeFromSketch",
2239                "legacyChamfer",
2240                "legacyTop",
2241            ],
2242        );
2243        assert_vars_are_missing(&result, &["edge1"]);
2244    }
2245
2246    #[tokio::test(flavor = "multi_thread")]
2247    async fn fillet_tagged_body_gets_face_tags() {
2248        let program = r#"@settings(kclVersion = 2.0)
2249profile = sketch(on = XY) {
2250  edge1 = line(start = [var 0mm, var 0mm], end = [var 10mm, var 0mm])
2251  edge2 = line(start = [var 10mm, var 0mm], end = [var 10mm, var 10mm])
2252  edge3 = line(start = [var 10mm, var 10mm], end = [var 0mm, var 10mm])
2253  edge4 = line(start = [var 0mm, var 10mm], end = [var 0mm, var 0mm])
2254  coincident([edge1.end, edge2.start])
2255  coincident([edge2.end, edge3.start])
2256  coincident([edge3.end, edge4.start])
2257  coincident([edge4.end, edge1.start])
2258}
2259profileRegion = region(point = [5mm, 5mm], sketch = profile)
2260
2261base = extrude(profileRegion, length = 5mm, tagEnd = $top)
2262body = fillet(base, tags = getCommonEdge(faces = [profileRegion.tags.edge1, top]), radius = 1mm, tag = $filletFace)
2263filletFromBody = body.faces.filletFace
2264topFromBody = body.faces.top
2265edgeFromSketch = profileRegion.tags.edge1
2266legacyFillet = filletFace
2267legacyTop = top
2268"#;
2269
2270        let result = parse_execute(program).await.unwrap();
2271        assert_body_face_tags(&result, &["top", "filletFace"], &["edge1"]);
2272        assert_vars_are_tags(
2273            &result,
2274            &[
2275                "top",
2276                "filletFace",
2277                "filletFromBody",
2278                "topFromBody",
2279                "edgeFromSketch",
2280                "legacyFillet",
2281                "legacyTop",
2282            ],
2283        );
2284        assert_vars_are_missing(&result, &["edge1"]);
2285    }
2286
2287    #[tokio::test(flavor = "multi_thread")]
2288    async fn accessing_body_tag_through_body_sketch_tags_warns() {
2289        let program = r#"@settings(kclVersion = 2.0)
2290profile = startSketchOn(XY)
2291  |> startProfile(at = [0, 0])
2292  |> line(end = [10, 0], tag = $line1)
2293  |> line(end = [0, 10])
2294  |> line(end = [-10, 0])
2295  |> close()
2296
2297body = extrude(profile, length = 5, tagEnd = $top)
2298topFromSketch = body.sketch.tags.top
2299topFromBody = body.faces.top
2300"#;
2301
2302        let result = parse_execute(program).await.unwrap();
2303        assert!(matches!(get_var(&result, "topFromSketch"), KclValue::TagIdentifier(_)));
2304        assert!(matches!(get_var(&result, "topFromBody"), KclValue::TagIdentifier(_)));
2305
2306        let warnings = deprecated_solid_tag_access_warnings(&result);
2307        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2308        assert_eq!(warnings[0].severity, Severity::Warning);
2309        assert!(warnings[0].message.contains("`top`"), "found {}", warnings[0].message);
2310        assert!(
2311            warnings[0].message.contains("Accessing solid-created face `top` through sketch tags is deprecated. Use the body's faces instead, e.g. `body.faces.top`."),
2312            "found {}",
2313            warnings[0].message
2314        );
2315    }
2316
2317    #[tokio::test(flavor = "multi_thread")]
2318    async fn accessing_sketch_path_tag_through_body_sketch_tags_does_not_warn() {
2319        let program = r#"@settings(kclVersion = 2.0)
2320profile = startSketchOn(XY)
2321  |> startProfile(at = [0, 0])
2322  |> line(end = [10, 0], tag = $line1)
2323  |> line(end = [0, 10])
2324  |> line(end = [-10, 0])
2325  |> close()
2326
2327body = extrude(profile, length = 5, tagEnd = $top)
2328lineFromSketch = body.sketch.tags.line1
2329"#;
2330
2331        let result = parse_execute(program).await.unwrap();
2332        assert!(matches!(get_var(&result, "lineFromSketch"), KclValue::TagIdentifier(_)));
2333        let warnings = deprecated_solid_tag_access_warnings(&result);
2334        assert!(
2335            warnings.is_empty(),
2336            "sketch path tags should not get body-tag deprecation warnings: {warnings:#?}"
2337        );
2338    }
2339
2340    #[tokio::test(flavor = "multi_thread")]
2341    async fn accessing_body_tag_through_sketch_block_region_tags_warns() {
2342        let program = r#"@settings(kclVersion = 2.0)
2343profile = sketch(on = XY) {
2344  line1 = line(start = [0, 0], end = [10, 0])
2345  line2 = line(start = [10, 0], end = [10, 10])
2346  line3 = line(start = [10, 10], end = [0, 10])
2347  line4 = line(start = [0, 10], end = [0, 0])
2348}
2349
2350profileRegion = region(point = [1, 1], sketch = profile)
2351body = extrude(profileRegion, length = 5, tagEnd = $top)
2352topFromRegion = profileRegion.tags.top
2353"#;
2354
2355        let result = parse_execute(program).await.unwrap();
2356        assert!(matches!(get_var(&result, "topFromRegion"), KclValue::TagIdentifier(_)));
2357
2358        let warnings = deprecated_solid_tag_access_warnings(&result);
2359        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2360        assert_eq!(warnings[0].severity, Severity::Warning);
2361        assert!(warnings[0].message.contains("`top`"), "found {}", warnings[0].message);
2362    }
2363
2364    fn deprecation_warnings(result: &ExecTestResults) -> Vec<&CompilationIssue> {
2365        result
2366            .exec_state
2367            .issues()
2368            .iter()
2369            .filter(|issue| issue.message.contains("is deprecated"))
2370            .collect()
2371    }
2372
2373    #[tokio::test(flavor = "multi_thread")]
2374    async fn passing_param_deprecated_for_all_versions_warns() {
2375        // `@(deprecated = true)` deprecates the parameter regardless of the KCL
2376        // version, so even on the latest version the call should warn.
2377        let program = r#"@settings(kclVersion = 2.0)
2378fn f(
2379  @a: number,
2380  @(deprecated = true)
2381  oldArg?: number,
2382) {
2383  return a
2384}
2385x = f(1, oldArg = 2)
2386"#;
2387
2388        let result = parse_execute(program).await.unwrap();
2389        let warnings = deprecation_warnings(&result);
2390        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2391        assert_eq!(warnings[0].severity, Severity::Warning);
2392        assert_eq!(warnings[0].tag, crate::errors::Tag::Deprecated);
2393        assert!(
2394            warnings[0].message.contains("`f(oldArg)` is deprecated"),
2395            "found {}",
2396            warnings[0].message
2397        );
2398    }
2399
2400    #[tokio::test(flavor = "multi_thread")]
2401    async fn not_passing_deprecated_param_does_not_warn() {
2402        let program = r#"fn f(
2403  @a: number,
2404  @(deprecated = true)
2405  oldArg?: number,
2406) {
2407  return a
2408}
2409x = f(1)
2410"#;
2411
2412        let result = parse_execute(program).await.unwrap();
2413        let warnings = deprecation_warnings(&result);
2414        assert!(
2415            warnings.is_empty(),
2416            "unused deprecated parameter should not warn: {warnings:#?}"
2417        );
2418    }
2419
2420    fn unexpected_arg_errors(result: &ExecTestResults) -> Vec<&CompilationIssue> {
2421        result
2422            .exec_state
2423            .issues()
2424            .iter()
2425            .filter(|issue| issue.message.contains("is not an argument of"))
2426            .collect()
2427    }
2428
2429    #[tokio::test(flavor = "multi_thread")]
2430    async fn passing_removed_param_on_removed_version_errors_like_unknown_arg() {
2431        // "3.0-preview" is a pre-release of 3.0, so a parameter removed in
2432        // 3.0 is already gone there.
2433        let program = r#"@settings(kclVersion = "3.0-preview")
2434fn f(
2435  @a: number,
2436  @(deprecated_since = "2.0", removed_in = "3.0")
2437  oldArg?: number,
2438) {
2439  return a
2440}
2441x = f(1, oldArg = 2)
2442"#;
2443
2444        let result = parse_execute(program).await.unwrap();
2445        let errors = unexpected_arg_errors(&result);
2446        assert_eq!(
2447            errors.len(),
2448            1,
2449            "expected one unknown-argument error, got {:#?}",
2450            result.issues()
2451        );
2452        assert_eq!(errors[0].severity, Severity::Error);
2453        // Same path as an unknown argument, plus the two versions that explain
2454        // the mismatch.
2455        assert_eq!(
2456            errors[0].message,
2457            "`oldArg` is not an argument of `f`; it was removed in KCL 3.0, but this program uses KCL 3.0-preview"
2458        );
2459        // The error replaces the deprecation warning rather than adding to it.
2460        assert!(
2461            deprecation_warnings(&result).is_empty(),
2462            "removed parameter should not also warn: {:#?}",
2463            result.issues()
2464        );
2465        // Execution continues as if the argument had not been passed.
2466        assert!(matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 1.0));
2467    }
2468
2469    #[tokio::test(flavor = "multi_thread")]
2470    async fn passing_removed_param_before_removed_version_still_works() {
2471        let program = r#"@settings(kclVersion = 2.0)
2472fn f(
2473  @a: number,
2474  @(deprecated_since = "2.0", removed_in = "3.0")
2475  oldArg?: number,
2476) {
2477  return oldArg
2478}
2479x = f(1, oldArg = 2)
2480"#;
2481
2482        let result = parse_execute(program).await.unwrap();
2483        assert!(
2484            unexpected_arg_errors(&result).is_empty(),
2485            "parameter is not removed until 3.0: {:#?}",
2486            result.issues()
2487        );
2488        let warnings = deprecation_warnings(&result);
2489        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2490        assert!(
2491            warnings[0].message.contains("`f(oldArg)` is deprecated as of KCL 2.0"),
2492            "found {}",
2493            warnings[0].message
2494        );
2495        assert!(matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 2.0));
2496    }
2497
2498    #[tokio::test(flavor = "multi_thread")]
2499    async fn removed_optional_param_binds_its_default() {
2500        let program = r#"@settings(kclVersion = "3.0-preview")
2501fn f(
2502  @(removed_in = "3.0")
2503  oldArg?: number = 7,
2504) {
2505  return oldArg
2506}
2507x = f()
2508"#;
2509
2510        let result = parse_execute(program).await.unwrap();
2511        assert!(result.issues().is_empty(), "unexpected issues: {:#?}", result.issues());
2512        assert!(matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 7.0));
2513    }
2514
2515    #[tokio::test(flavor = "multi_thread")]
2516    async fn removed_param_is_not_matched_by_label_shorthand() {
2517        // Before 3.0, `f(oldArg)` desugars to `f(oldArg = oldArg)`. Once the
2518        // parameter is removed, the argument is just an unlabeled argument the
2519        // function does not accept, and the removed parameter must not be
2520        // suggested as a label.
2521        let program = r#"@settings(kclVersion = "3.0-preview")
2522fn f(
2523  @(removed_in = "3.0")
2524  oldArg?: number,
2525) {
2526  return 1
2527}
2528oldArg = 2
2529x = f(oldArg)
2530"#;
2531
2532        let err = parse_execute(program).await.unwrap_err();
2533        assert_eq!(err.message(), "This argument needs a label, but it doesn't have one");
2534    }
2535
2536    #[tokio::test(flavor = "multi_thread")]
2537    async fn passing_not_yet_added_param_errors_like_unknown_arg() {
2538        let program = r#"@settings(kclVersion = 2.0)
2539fn f(
2540  @a: number,
2541  @(added_in = "3.0")
2542  newArg?: number,
2543) {
2544  return a
2545}
2546x = f(1, newArg = 2)
2547"#;
2548
2549        let result = parse_execute(program).await.unwrap();
2550        let errors = unexpected_arg_errors(&result);
2551        assert_eq!(
2552            errors.len(),
2553            1,
2554            "expected one unknown-argument error, got {:#?}",
2555            result.issues()
2556        );
2557        assert_eq!(errors[0].severity, Severity::Error);
2558        assert_eq!(
2559            errors[0].message,
2560            "`newArg` is not an argument of `f`; it was added in KCL 3.0, but this program uses KCL 2.0"
2561        );
2562        // Execution continues as if the argument had not been passed.
2563        assert!(matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 1.0));
2564    }
2565
2566    #[tokio::test(flavor = "multi_thread")]
2567    async fn not_yet_added_param_error_reports_default_kcl_version() {
2568        // No `@settings(kclVersion = ...)`, so the program runs on the
2569        // default version, and the message says which one that is.
2570        let program = r#"fn f(
2571  @(added_in = "2.0")
2572  newArg?: number,
2573) {
2574  return 1
2575}
2576x = f(newArg = 2)
2577"#;
2578
2579        let result = parse_execute(program).await.unwrap();
2580        let errors = unexpected_arg_errors(&result);
2581        assert_eq!(errors.len(), 1, "got {:#?}", result.issues());
2582        assert_eq!(
2583            errors[0].message,
2584            "`newArg` is not an argument of `f`; it was added in KCL 2.0, but this program uses KCL 1.0"
2585        );
2586    }
2587
2588    #[tokio::test(flavor = "multi_thread")]
2589    async fn passing_added_param_on_or_after_added_version_works() {
2590        // The boundary is inclusive, and a pre-release such as "3.0-preview"
2591        // counts as the release it precedes.
2592        for (kcl_version, added_in) in [("2.0", "1.0"), ("2.0", "2.0"), ("\"3.0-preview\"", "3.0")] {
2593            let program = format!(
2594                r#"@settings(kclVersion = {kcl_version})
2595fn f(
2596  @(added_in = "{added_in}")
2597  newArg?: number,
2598) {{
2599  return newArg
2600}}
2601x = f(newArg = 2)
2602"#
2603            );
2604
2605            let result = parse_execute(&program).await.unwrap();
2606            assert!(
2607                result.issues().is_empty(),
2608                "kclVersion {kcl_version}, added_in {added_in}: {:#?}",
2609                result.issues()
2610            );
2611            assert!(
2612                matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 2.0),
2613                "kclVersion {kcl_version}, added_in {added_in}"
2614            );
2615        }
2616    }
2617
2618    #[tokio::test(flavor = "multi_thread")]
2619    async fn not_yet_added_optional_param_binds_its_default() {
2620        let program = r#"@settings(kclVersion = 2.0)
2621fn f(
2622  @(added_in = "3.0")
2623  newArg?: number = 7,
2624) {
2625  return newArg
2626}
2627x = f()
2628"#;
2629
2630        let result = parse_execute(program).await.unwrap();
2631        assert!(result.issues().is_empty(), "unexpected issues: {:#?}", result.issues());
2632        assert!(matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 7.0));
2633    }
2634
2635    #[tokio::test(flavor = "multi_thread")]
2636    async fn not_yet_added_param_is_not_matched_by_label_shorthand() {
2637        // Once the parameter exists, `f(newArg)` desugars to
2638        // `f(newArg = newArg)`. Before that, the argument is just an unlabeled
2639        // argument the function does not accept, and the parameter must not
2640        // be suggested as a label.
2641        let program = r#"@settings(kclVersion = 2.0)
2642fn f(
2643  @(added_in = "3.0")
2644  newArg?: number,
2645) {
2646  return 1
2647}
2648newArg = 2
2649x = f(newArg)
2650"#;
2651
2652        let err = parse_execute(program).await.unwrap_err();
2653        assert_eq!(err.message(), "This argument needs a label, but it doesn't have one");
2654    }
2655
2656    #[tokio::test(flavor = "multi_thread")]
2657    async fn param_lifecycle_added_then_deprecated_then_removed() {
2658        let body = r#"fn f(
2659  @(added_in = "2.0", deprecated_since = "2.0", removed_in = "3.0")
2660  arg?: number,
2661) {
2662  return arg
2663}
2664x = f(arg = 2)
2665"#;
2666        for (kcl_version, expected_error) in [
2667            (
2668                "1.0",
2669                Some("`arg` is not an argument of `f`; it was added in KCL 2.0, but this program uses KCL 1.0"),
2670            ),
2671            ("2.0", None),
2672            (
2673                "\"3.0-preview\"",
2674                Some(
2675                    "`arg` is not an argument of `f`; it was removed in KCL 3.0, but this program uses KCL 3.0-preview",
2676                ),
2677            ),
2678        ] {
2679            let program = format!("@settings(kclVersion = {kcl_version})\n{body}");
2680            let result = parse_execute(&program).await.unwrap();
2681            let errors = unexpected_arg_errors(&result);
2682            match expected_error {
2683                Some(message) => {
2684                    assert_eq!(errors.len(), 1, "kclVersion {kcl_version}: {:#?}", result.issues());
2685                    assert_eq!(errors[0].message, message, "kclVersion {kcl_version}");
2686                    assert!(
2687                        deprecation_warnings(&result).is_empty(),
2688                        "kclVersion {kcl_version}: an unavailable parameter should not also warn: {:#?}",
2689                        result.issues()
2690                    );
2691                }
2692                None => {
2693                    assert!(errors.is_empty(), "kclVersion {kcl_version}: {:#?}", result.issues());
2694                    // Available and deprecated on this version.
2695                    assert_eq!(
2696                        deprecation_warnings(&result).len(),
2697                        1,
2698                        "kclVersion {kcl_version}: {:#?}",
2699                        result.issues()
2700                    );
2701                    assert!(
2702                        matches!(get_var(&result, "x"), KclValue::Number { value, .. } if value == 2.0),
2703                        "kclVersion {kcl_version}"
2704                    );
2705                }
2706            }
2707        }
2708    }
2709
2710    #[tokio::test(flavor = "multi_thread")]
2711    async fn stdlib_legacy_method_is_removed_in_kcl_3() {
2712        let solids = r#"left = startSketchOn(XY)
2713  |> circle(center = [0, 0], radius = 2)
2714  |> extrude(length = 1)
2715right = startSketchOn(XY)
2716  |> circle(center = [1, 0], radius = 2)
2717  |> extrude(length = 1)
2718both = union([left, right], legacyMethod = true)
2719"#;
2720
2721        let program = format!("@settings(kclVersion = \"3.0-preview\")\n{solids}");
2722        let result = parse_execute(&program).await.unwrap();
2723        let errors = unexpected_arg_errors(&result);
2724        assert_eq!(errors.len(), 1, "got {:#?}", result.issues());
2725        assert_eq!(
2726            errors[0].message,
2727            "`legacyMethod` is not an argument of `union`; it was removed in KCL 3.0, but this program uses KCL 3.0-preview"
2728        );
2729
2730        // Still accepted, with a deprecation warning, before KCL 3.0.
2731        let program = format!("@settings(kclVersion = 2.0)\n{solids}");
2732        let result = parse_execute(&program).await.unwrap();
2733        assert!(unexpected_arg_errors(&result).is_empty(), "got {:#?}", result.issues());
2734        assert!(
2735            deprecation_warnings(&result)
2736                .iter()
2737                .any(|w| w.message.contains("`union(legacyMethod)` is deprecated as of KCL 2.0")),
2738            "got {:#?}",
2739            result.issues()
2740        );
2741    }
2742
2743    #[tokio::test(flavor = "multi_thread")]
2744    async fn deprecated_calls_inside_kcl_stdlib_do_not_warn() {
2745        let program = include_str!("../../tests/cube_with_hole/input.kcl");
2746
2747        let result = parse_execute(program).await.unwrap();
2748        let warnings = deprecation_warnings(&result);
2749        assert!(
2750            warnings.is_empty(),
2751            "KCL stdlib internals should not emit deprecation warnings: {warnings:#?}"
2752        );
2753    }
2754
2755    #[tokio::test(flavor = "multi_thread")]
2756    async fn deprecated_stdlib_call_from_user_code_still_warns() {
2757        let program = r#"@settings(kclVersion = 2.0)
2758plane = startSketchOn(XY)
2759"#;
2760
2761        let result = parse_execute(program).await.unwrap();
2762        let warnings = deprecation_warnings(&result);
2763        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2764        assert!(
2765            warnings[0].message.contains("`startSketchOn` is deprecated"),
2766            "found {}",
2767            warnings[0].message
2768        );
2769        assert_eq!(warnings[0].tag, crate::errors::Tag::Deprecated);
2770    }
2771
2772    #[tokio::test(flavor = "multi_thread")]
2773    async fn deprecated_since_warns_for_prerelease_kcl_version() {
2774        let program = r#"@settings(kclVersion = "3.0-preview")
2775plane = startSketchOn(XY)
2776"#;
2777
2778        let result = parse_execute(program).await.unwrap();
2779        let warnings = deprecation_warnings(&result);
2780        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2781        assert_eq!(warnings[0].severity, Severity::Warning);
2782        assert_eq!(warnings[0].tag, crate::errors::Tag::Deprecated);
2783        assert!(
2784            warnings[0]
2785                .message
2786                .contains("`startSketchOn` is deprecated as of KCL 2.0"),
2787            "found {}",
2788            warnings[0].message
2789        );
2790    }
2791
2792    #[tokio::test(flavor = "multi_thread")]
2793    async fn deprecation_version_override_does_not_change_program_version() {
2794        let program = crate::Program::parse_no_errs(
2795            r#"@settings(kclVersion = 1.0)
2796plane = startSketchOn(XY)
2797"#,
2798        )
2799        .unwrap();
2800        let exec_ctxt = ExecutorContext {
2801            engine: Arc::new(EngineManager::new_mock()),
2802            engine_batch: crate::engine::EngineBatchContext::default(),
2803            fs: crate::fs::new_file_system_handle(crate::fs::FileManager::new()),
2804            settings: Default::default(),
2805            context_type: ContextType::Mock,
2806            execution_callbacks: Default::default(),
2807            executor_kind: crate::execution::machine::ExecutorKind::resolve(),
2808            machine_call_depth_limit: crate::execution::machine::DEFAULT_MACHINE_CALL_DEPTH_LIMIT,
2809        };
2810        let mut exec_state = ExecState::new(&exec_ctxt);
2811        exec_state.set_deprecation_version_override(Some("2.0"));
2812
2813        exec_ctxt.run(&program, &mut exec_state).await.unwrap();
2814
2815        assert_eq!(exec_state.mod_local.settings.kcl_version, crate::KclVersion::V1);
2816        let warnings = exec_state
2817            .issues()
2818            .iter()
2819            .filter(|issue| issue.tag == crate::errors::Tag::Deprecated)
2820            .collect::<Vec<_>>();
2821        assert_eq!(warnings.len(), 1, "expected one deprecation warning, got {warnings:#?}");
2822    }
2823
2824    #[tokio::test(flavor = "multi_thread")]
2825    async fn deprecated_sketch_v1_warning_explains_sketch_solve() {
2826        // Sketch v1 deprecation warnings must be self-contained: they should
2827        // say what replaces the function and link the conversion docs so both
2828        // humans and AI agents can act on the warning alone.
2829        let program = r#"@settings(kclVersion = 2.0)
2830exampleSketch = startSketchOn(XZ)
2831  |> startProfile(at = [0, 0])
2832  |> line(end = [10, 0])
2833"#;
2834
2835        let result = parse_execute(program).await.unwrap();
2836        let warnings = deprecation_warnings(&result);
2837        assert_eq!(
2838            warnings.len(),
2839            3,
2840            "expected one warning per sketch v1 call, got {warnings:#?}"
2841        );
2842        for warning in warnings {
2843            assert!(
2844                warning.message.contains("sketch-solve"),
2845                "expected sketch-solve context in {}",
2846                warning.message
2847            );
2848            assert!(
2849                warning
2850                    .message
2851                    .contains("https://zoo.dev/docs/kcl-book/sketch2d_constraints.html"),
2852                "expected docs URL in {}",
2853                warning.message
2854            );
2855        }
2856    }
2857}