use crate::helpers::*;
use ::syn::*;
pub struct Behavior;
impl super::Behavior for Behavior {
fn is(&self, sty: &Type) -> bool {
if let Type::Path(tp) = sty {
is_same_id(&tp.path, "String")
} else {
false
}
}
fn imports(&self, _sty: &Type, pkg: &str, _crate_name: &str) -> Vec<String> {
vec![
"dart:ffi".to_owned(),
"dart:convert".to_owned(),
"package:ffi/ffi.dart".to_owned(),
format!("package:{}/dustr/string.dart", pkg),
]
}
fn name(&self, _sty: &Type) -> String { "string".to_owned() }
fn ffi(&self, _sty: &Type) -> String {
"Pointer<Utf8>".to_owned()
}
fn native(&self, _sty: &Type) -> String {
"String".to_owned()
}
fn native_to_ffi(&self, _sty: &Type, expr: String) -> String {
format!("stringToCString({})", expr)
}
fn ffi_to_native(&self, _sty: &Type, expr: String) -> String {
format!("Utf8.fromUtf8({})", expr)
}
}