kcl_lib/std/constraints.rs
1use anyhow::Result;
2
3use crate::{
4 errors::{KclError, KclErrorDetails},
5 execution::{ExecState, KclValue},
6 std::Args,
7};
8
9pub async fn parallel(_exec_state: &mut ExecState, args: Args) -> Result<KclValue, KclError> {
10 Err(KclError::Internal {
11 details: KclErrorDetails::new("Not yet implemented".to_owned(), vec![args.source_range]),
12 })
13}