(kind: Option<&str>)
| 2745 | } |
| 2746 | |
| 2747 | fn parse_worker_agent_kind(kind: Option<&str>) -> napi::Result<RustWorkerAgentKind> { |
| 2748 | kind.unwrap_or("custom") |
| 2749 | .parse::<RustWorkerAgentKind>() |
| 2750 | .map_err(|e| napi::Error::from_reason(e.to_string())) |
| 2751 | } |
| 2752 | |
| 2753 | fn parse_confirmation_inheritance( |
| 2754 | value: &str, |
no outgoing calls
no test coverage detected