1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
use proc_macro2::Span;
use quote::format_ident;
use syn::{
ext::IdentExt, parse_quote, Attribute, FnArg::Typed, Pat::Ident, PatType, Signature, Stmt,
};
use crate::utils::extract_docs;
#[derive(Clone, PartialEq)]
enum SavvyInputTypeCategory {
Sexp,
SexpWrapper,
PrimitiveType,
UserDefinedTypeRef, // &T
UserDefinedType, // T
DllInfo,
}
#[derive(Clone)]
struct SavvyInputType {
category: SavvyInputTypeCategory,
ty_orig: syn::Type,
ty_str: String,
optional: bool,
}
#[allow(dead_code)]
impl SavvyInputType {
fn from_type(ty: &syn::Type, in_option: bool) -> syn::Result<Self> {
match &ty {
// User-defined structs are accepted in the form of either `&` or
// `&mut`. Note that `&str` also falls here.
syn::Type::Reference(syn::TypeReference { elem, .. }) => {
if let syn::Type::Path(type_path) = elem.as_ref() {
let ty_str = type_path.path.segments.last().unwrap().ident.to_string();
if &ty_str == "str" {
Ok(Self {
category: SavvyInputTypeCategory::PrimitiveType,
ty_orig: ty.clone(),
ty_str: "&str".to_string(),
optional: in_option,
})
} else {
Ok(Self {
category: SavvyInputTypeCategory::UserDefinedTypeRef,
ty_orig: ty.clone(),
ty_str,
optional: in_option,
})
}
} else {
Err(syn::Error::new_spanned(
ty.clone(),
"Unexpected type specification: {:?}",
))
}
}
syn::Type::Path(type_path) => {
let type_path_last = type_path.path.segments.last().unwrap();
let type_ident = &type_path_last.ident;
let ty_str = type_ident.to_string();
match ty_str.as_str() {
"Option" => {
if in_option {
return Err(syn::Error::new_spanned(
type_path,
"`Option` cannot be nested",
));
}
if let syn::PathArguments::AngleBracketed(
syn::AngleBracketedGenericArguments { args, .. },
) = &type_path_last.arguments
{
if args.len() == 1 {
if let syn::GenericArgument::Type(ty) = &args.first().unwrap() {
return Self::from_type(ty, true);
}
}
}
Err(syn::Error::new_spanned(
type_path,
"Option<T> can accept only a type",
))
}
// Owned-types are not allowed for the input
"OwnedIntegerSexp" | "OwnedRealSexp" | "OwnedComplexSexp"
| "OwnedLogicalSexp" | "OwnedRawSexp" | "OwnedStringSexp" | "OwnedListSexp" => {
let msg = format!(
"`Owned-` types are not allowed here. Did you mean `{}`?",
ty_str.strip_prefix("Owned").unwrap()
);
Err(syn::Error::new_spanned(type_path, msg))
}
// Since Sexp doesn't need to be converted by try_from(),
// this needs to be handled separately.
"Sexp" => Ok(Self {
category: SavvyInputTypeCategory::Sexp,
ty_orig: ty.clone(),
ty_str,
optional: in_option,
}),
// Read-only types
"IntegerSexp" | "RealSexp" | "NumericSexp" | "ComplexSexp" | "LogicalSexp"
| "RawSexp" | "StringSexp" | "ListSexp" | "FunctionSexp"
| "EnvironmentSexp" => Ok(Self {
category: SavvyInputTypeCategory::SexpWrapper,
ty_orig: ty.clone(),
ty_str,
optional: in_option,
}),
// Primitive types
"i32" | "usize" | "f64" | "bool" | "u8" | "NumericScalar" => Ok(Self {
category: SavvyInputTypeCategory::PrimitiveType,
ty_orig: ty.clone(),
ty_str,
optional: in_option,
}),
"DllInfo" => Err(syn::Error::new_spanned(
type_path,
"DllInfo must be `*mut DllInfo`",
)),
_ => Ok(Self {
category: SavvyInputTypeCategory::UserDefinedType,
ty_orig: ty.clone(),
ty_str,
optional: in_option,
}),
}
}
// Only *mut DllInfo falls here
syn::Type::Ptr(syn::TypePtr {
mutability, elem, ..
}) => {
let type_ident = if let syn::Type::Path(p) = elem.as_ref() {
p.path.segments.last().unwrap().ident.to_string()
} else {
"".to_string()
};
if &type_ident != "DllInfo" {
return Err(syn::Error::new_spanned(
ty.clone(),
"Unexpected type specification: {:?}",
));
}
if mutability.is_none() {
return Err(syn::Error::new_spanned(
ty.clone(),
"DllInfo must be `*mut DllInfo`",
));
}
Ok(Self {
category: SavvyInputTypeCategory::DllInfo,
ty_orig: ty.clone(),
ty_str: type_ident.to_string(),
optional: in_option,
})
}
_ => Err(syn::Error::new_spanned(
ty.clone(),
"Unexpected type specification: {:?}",
)),
}
}
/// Returns the corresponding type for internal function.
fn to_rust_type_outer(&self) -> syn::Type {
self.ty_orig.clone()
}
/// Returns the corresponding type for API function.
fn to_rust_type_inner(&self) -> syn::Type {
if matches!(self.category, SavvyInputTypeCategory::DllInfo) {
self.ty_orig.clone()
} else {
parse_quote!(savvy::ffi::SEXP)
}
}
/// Returns the corresponding type for C function.
fn to_c_type(&self) -> String {
if matches!(self.category, SavvyInputTypeCategory::DllInfo) {
"DllInfo*".to_string()
} else {
"SEXP".to_string()
}
}
}
#[derive(Clone)]
pub struct SavvyFnArg {
pub(crate) pat: syn::Ident,
ty: SavvyInputType,
}
impl SavvyFnArg {
pub fn pat(&self) -> syn::Ident {
self.pat.clone()
}
pub fn is_user_defined_type(&self) -> bool {
matches!(
&self.ty.category,
SavvyInputTypeCategory::UserDefinedTypeRef | SavvyInputTypeCategory::UserDefinedType
)
}
pub fn ty_string(&self) -> String {
self.ty.ty_str.clone()
}
pub fn is_optional(&self) -> bool {
self.ty.optional
}
pub fn to_c_type_string(&self) -> String {
self.ty.to_c_type()
}
pub fn to_rust_type_outer(&self) -> syn::Type {
self.ty.to_rust_type_outer()
}
pub fn to_rust_type_inner(&self) -> syn::Type {
self.ty.to_rust_type_inner()
}
}
impl PartialEq for SavvyFnArg {
fn eq(&self, other: &Self) -> bool {
self.pat == other.pat
&& self.ty.category == other.ty.category
&& self.ty.ty_str == other.ty.ty_str
&& self.ty.optional == other.ty.optional
}
}
/// Return type of a user-defined struct. This can be either
///
/// - `savvy::Result<Foo>`
/// - `savvy::Result<Self>`
/// - `Self`
#[derive(Clone)]
pub struct UserDefinedStructReturnType {
pub(crate) ty: syn::Ident,
pub(crate) return_type: syn::ReturnType,
pub(crate) wrapped_with_result: bool,
}
/// Return type. This can be either
///
/// - `savvy::Result<Sexp>`
/// - `savvy::Result<()>`
/// - a user-defined struct
/// - `savvy::Result<Foo>`
/// - `savvy::Result<Self>`
/// - `Self`
#[derive(Clone)]
pub enum SavvyFnReturnType {
Sexp(syn::ReturnType),
Unit(syn::ReturnType),
UserDefinedStruct(UserDefinedStructReturnType),
}
impl SavvyFnReturnType {
pub fn inner(&self) -> &syn::ReturnType {
match self {
SavvyFnReturnType::Sexp(ret_ty) => ret_ty,
SavvyFnReturnType::Unit(ret_ty) => ret_ty,
SavvyFnReturnType::UserDefinedStruct(ret_ty) => &ret_ty.return_type,
}
}
}
#[derive(Clone)]
pub enum SavvyFnType {
/// A function that doesn't belong to a struct
BareFunction,
/// A function that belongs to a struct, and the first argument is `self`.
/// Contains the type name of the sturct.
Method {
ty: syn::Type,
reference: bool,
mutability: bool,
},
/// A function that belongs to a struct, but the first argument is not
/// `self`. Contains the type name of the sturct.
AssociatedFunction(syn::Type),
/// A function to be executed in the package's initialization routine.
InitFunction,
}
#[derive(Clone)]
pub struct SavvyFn {
/// Doc comments
pub docs: Vec<String>,
/// Attributes except for `#[savvy]`
pub attrs: Vec<syn::Attribute>,
/// Original function name
pub fn_name: syn::Ident,
/// type path of `self` in the case of impl function
pub fn_type: SavvyFnType,
/// Function arguments
pub args: Vec<SavvyFnArg>,
/// Return type of the function
pub return_type: SavvyFnReturnType,
/// Additional lines to convert `SEXP` to the specific types
pub stmts_additional: Vec<syn::Stmt>,
}
#[allow(dead_code)]
impl SavvyFn {
pub(crate) fn get_self_ty_ident(&self) -> Option<syn::Ident> {
let self_ty = match &self.fn_type {
SavvyFnType::Method { ty, .. } => ty,
SavvyFnType::AssociatedFunction(ty) => ty,
_ => return None,
};
if let syn::Type::Path(type_path) = self_ty {
let ty = type_path
.path
.segments
.last()
.expect("Unexpected type path")
.ident
.clone();
Some(ty)
} else {
panic!("Unexpected self type!")
}
}
pub fn fn_name_inner(&self) -> syn::Ident {
match self.get_self_ty_ident() {
Some(ty) => format_ident!("savvy_{}_{}_inner", ty, self.fn_name),
None => format_ident!("savvy_{}_inner", self.fn_name),
}
}
/// Returns a function name to be exported from Rust to C
pub fn fn_name_c_header(&self) -> syn::Ident {
match self.get_self_ty_ident() {
Some(ty) => format_ident!("savvy_{}_{}__ffi", ty, self.fn_name),
None => format_ident!("savvy_{}__ffi", self.fn_name),
}
}
/// Returns a function name to be exported from C to R
pub fn fn_name_c_impl(&self) -> syn::Ident {
match self.get_self_ty_ident() {
Some(ty) => format_ident!("savvy_{}_{}__impl", ty, self.fn_name),
None => format_ident!("savvy_{}__impl", self.fn_name),
}
}
pub fn from_fn(orig: &syn::ItemFn, as_init_fn: bool) -> syn::Result<Self> {
let fn_type = if as_init_fn {
SavvyFnType::InitFunction
} else {
SavvyFnType::BareFunction
};
Self::new(&orig.attrs, &orig.sig, fn_type, None)
}
pub fn from_impl_fn(
orig: &syn::ImplItemFn,
fn_type: SavvyFnType,
self_ty: &syn::Type,
) -> syn::Result<Self> {
Self::new(&orig.attrs, &orig.sig, fn_type, Some(self_ty))
}
pub fn new(
attrs: &[Attribute],
sig: &Signature,
fn_type: SavvyFnType,
self_ty: Option<&syn::Type>,
) -> syn::Result<Self> {
// TODO: check function signature and abort if any of it is unexpected one.
let mut attrs = attrs.to_vec();
// Remove #[savvy] and #[savvy_init]
attrs.retain(|attr| {
!(attr == &parse_quote!(#[savvy]) || attr == &parse_quote!(#[savvy_init]))
});
// Extract doc comments
let docs = extract_docs(attrs.as_slice());
let fn_name = sig.ident.clone();
let mut stmts_additional: Vec<Stmt> = Vec::new();
let args_new = sig
.inputs
.iter()
.filter_map(|arg| match arg {
Typed(PatType { pat, ty, .. }) => {
let pat = match pat.as_ref() {
Ident(arg) => arg.ident.clone(),
_ => {
return Some(Err(syn::Error::new_spanned(
pat,
"non-ident is not supported",
)));
}
};
let ty = match SavvyInputType::from_type(ty.as_ref(), false) {
Ok(ty) => ty,
Err(e) => return Some(Err(e)),
};
let ty_ident = ty.to_rust_type_outer();
match (&fn_type, &ty.category) {
// DllInfo is passed as it is
(&SavvyFnType::InitFunction, &SavvyInputTypeCategory::DllInfo) => {}
(&SavvyFnType::InitFunction, _) => {
return Some(Err(syn::Error::new_spanned(
ty.ty_orig,
"#[savvy_init] can be used only on a function that takes `*mut DllInfo`",
)));
}
(_, &SavvyInputTypeCategory::DllInfo) => {
return Some(Err(syn::Error::new_spanned(
ty.ty_orig,
"#[savvy] doesn't accept `*mut DllInfo`. Did you mean #[savvy_init]?",
)));
}
(_, &SavvyInputTypeCategory::Sexp) => {
if ty.optional {
stmts_additional.push(parse_quote! { let #pat = savvy::Sexp(#pat); });
stmts_additional.push(parse_quote! {
let #pat = if #pat.is_null() {
None
} else {
Some(#pat)
};
})
} else {
stmts_additional.push(parse_quote! {
let #pat = savvy::Sexp(#pat);
});
}
}
(_, _) => {
let arg_lit = syn::LitStr::new(&pat.unraw().to_string(), Span::call_site());
if ty.optional {
stmts_additional.push(parse_quote! { let #pat = savvy::Sexp(#pat); });
stmts_additional.push(parse_quote! {
let #pat = if #pat.is_null() {
None
} else {
Some(<#ty_ident>::try_from(#pat).map_err(|e| e.with_arg_name(#arg_lit))?)
};
})
} else {
stmts_additional.push(parse_quote! {
let #pat = <#ty_ident>::try_from(savvy::Sexp(#pat)).map_err(|e| e.with_arg_name(#arg_lit))?;
});
}
}
}
Some(Ok(SavvyFnArg { pat, ty }))
}
// Skip `self`
syn::FnArg::Receiver(syn::Receiver { .. }) => None,
})
.collect::<syn::Result<Vec<SavvyFnArg>>>()?;
// reject signature like fn (x: Option<i32>, y: i32)
let mut args_after_optional = args_new.iter().skip_while(|x| !x.is_optional());
if args_after_optional.any(|x| !x.is_optional()) {
return Err(syn::Error::new_spanned(
sig.inputs.clone(),
"optional args can be placed only after mandatory args",
));
}
// Check for init function
let is_init_fn = args_new
.iter()
.any(|x| matches!(x.ty.category, SavvyInputTypeCategory::DllInfo));
if is_init_fn && args_new.len() > 1 {
return Err(syn::Error::new_spanned(
sig,
"Initialization function can accept `*mut DllInfo` only",
));
}
let fn_type = if is_init_fn {
SavvyFnType::InitFunction
} else {
fn_type
};
Ok(Self {
docs,
attrs,
fn_name,
fn_type,
args: args_new,
return_type: get_savvy_return_type(&sig.output, self_ty)?,
stmts_additional,
})
}
}
fn self_ty_to_actual_ty(self_ty: Option<&syn::Type>) -> Option<syn::Ident> {
if let Some(syn::Type::Path(type_path)) = self_ty {
Some(type_path.path.segments.last().unwrap().ident.clone())
} else {
None
}
}
// Allowed return types are the followings. Note that, `Self` is converted to
// `EXTPTRSXP`, so the same as `savvy::Result<savvy::Sexp>`.
//
// - `savvy::Result<savvy::Sexp>`
// - `savvy::Result<()>`
// - `Self`
fn get_savvy_return_type(
return_type: &syn::ReturnType,
self_ty: Option<&syn::Type>,
) -> syn::Result<SavvyFnReturnType> {
match return_type {
syn::ReturnType::Default => Err(syn::Error::new_spanned(
return_type.clone(),
"function must have return type",
)),
syn::ReturnType::Type(_, ty) => {
let e = Err(syn::Error::new_spanned(
return_type.clone(),
"the return type must be savvy::Result<T> or savvy::Result<()>",
));
// Check if the type path is savvy::Result<..> or Result<..> and get
// the arguments inside < >.
let path_args = match ty.as_ref() {
syn::Type::Path(type_path) => {
// At least it must be savvy::T or T
if !is_type_path_savvy_or_no_qualifier(type_path) {
return e;
}
let last_path_seg = type_path.path.segments.last().unwrap();
match (
last_path_seg.ident.to_string().as_str(),
self_ty_to_actual_ty(self_ty),
) {
// if Result, do further investigation about hte inside.
("Result", _) => {}
// if Self or the same as the self type, it's allowed
(ret_ty_str, Some(ty_actual)) => {
if ret_ty_str != "Self" && ty_actual != ret_ty_str {
return e;
} else {
return Ok(SavvyFnReturnType::UserDefinedStruct(
UserDefinedStructReturnType {
ty: ty_actual,
return_type: parse_quote!(-> savvy::Result<#self_ty>),
wrapped_with_result: false,
},
));
}
}
_ => {
return e;
}
}
&last_path_seg.arguments
}
_ => return e,
};
// Check `T`` in savvy::Result<T>
if let syn::PathArguments::AngleBracketed(syn::AngleBracketedGenericArguments {
args,
..
}) = path_args
{
if args.len() != 1 {
return e;
}
if let syn::GenericArgument::Type(ty) = &args.first().unwrap() {
match ty {
syn::Type::Tuple(type_tuple) => {
if type_tuple.elems.is_empty() {
return Ok(SavvyFnReturnType::Unit(return_type.clone()));
}
}
syn::Type::Path(type_path) => {
let last_ident = &type_path.path.segments.last().unwrap().ident;
match last_ident.to_string().as_str() {
"Sexp" => return Ok(SavvyFnReturnType::Sexp(return_type.clone())),
// if it's `savvy::Result<Self>`, replace `Self` with the actual type
"Self" => {
if let Some(ty_actual) = self_ty_to_actual_ty(self_ty) {
return Ok(SavvyFnReturnType::UserDefinedStruct(
UserDefinedStructReturnType {
ty: ty_actual,
return_type: parse_quote!(-> savvy::Result<#self_ty>),
wrapped_with_result: true,
},
));
}
}
// catch common mistakes
wrong_ty @ ("String" | "i32" | "usize" | "f64" | "bool") => {
let msg = format!(
"Return type must be either (), savvy::Sexp, or a user-defined type.
You can use .try_into() to convert {wrong_ty} to savvy::Sexp."
);
return Err(syn::Error::new_spanned(type_path, msg));
}
// if it's the actual type, use it as it is.
_ => {
return Ok(SavvyFnReturnType::UserDefinedStruct(
UserDefinedStructReturnType {
ty: last_ident.clone(),
return_type: return_type.clone(),
wrapped_with_result: true,
},
))
}
}
}
_ => {}
}
}
}
e
}
}
}
/// check if the type path either starts with `savvy::` or no qualifier
fn is_type_path_savvy_or_no_qualifier(type_path: &syn::TypePath) -> bool {
if type_path.qself.is_some() || type_path.path.leading_colon.is_some() {
return false;
}
match type_path.path.segments.len() {
1 => true,
2 => {
let first_path_seg = type_path.path.segments.first().unwrap();
first_path_seg.arguments.is_none() && &first_path_seg.ident.to_string() == "savvy"
}
_ => false,
}
}
#[cfg(test)]
mod tests {
use super::*;
use syn::parse_quote;
#[test]
fn test_detect_return_type_sexp() {
let ok_cases1: &[syn::ReturnType] = &[
parse_quote!(-> Result<Sexp>),
parse_quote!(-> savvy::Result<Sexp>),
parse_quote!(-> savvy::Result<savvy::Sexp>),
];
for rt in ok_cases1 {
let srt = get_savvy_return_type(rt, None);
assert!(srt.is_ok());
assert!(matches!(srt.unwrap(), SavvyFnReturnType::Sexp(_)));
}
}
#[test]
fn test_detect_return_type_unit() {
let ok_cases2: &[syn::ReturnType] = &[
parse_quote!(-> Result<()>),
parse_quote!(-> savvy::Result<()>),
];
for rt in ok_cases2 {
let srt = get_savvy_return_type(rt, None);
assert!(srt.is_ok());
assert!(matches!(srt.unwrap(), SavvyFnReturnType::Unit(_)));
}
}
#[test]
fn test_detect_return_type_sturct() {
let ok_cases3: &[syn::ReturnType] = &[
parse_quote!(-> Result<Foo>),
parse_quote!(-> savvy::Result<Foo>),
];
for rt in ok_cases3 {
let srt = get_savvy_return_type(rt, None);
assert!(srt.is_ok());
assert!(matches!(
srt.unwrap(),
SavvyFnReturnType::UserDefinedStruct(_)
));
}
}
#[test]
fn test_detect_return_type_self() {
let ok_cases4: &[syn::ReturnType] = &[
parse_quote!(-> Self),
parse_quote!(-> Result<Self>),
parse_quote!(-> savvy::Result<Self>),
];
let self_ty: syn::Type = parse_quote!(Foo);
for (i, rt) in ok_cases4.iter().enumerate() {
let srt = get_savvy_return_type(rt, Some(&self_ty));
assert!(srt.is_ok());
if let SavvyFnReturnType::UserDefinedStruct(uds) = srt.unwrap() {
assert_eq!(uds.ty.to_string().as_str(), "Foo");
assert_eq!(uds.return_type, parse_quote!(-> savvy::Result<Foo>));
assert_eq!(uds.wrapped_with_result, i != 0); // only the first case is false
} else {
panic!("Unpexpected SavvyFnReturnType");
}
}
}
#[test]
fn test_detect_return_type_fail() {
let err_cases: &[syn::ReturnType] = &[
parse_quote!(-> Foo),
parse_quote!(-> savvy::Result<(T, T)>),
parse_quote!(-> foo::Result<Sexp>),
parse_quote!(),
];
for rt in err_cases {
assert!(get_savvy_return_type(rt, None).is_err())
}
}
}