fix: apply rustfmt
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
koalp 2020-09-21 00:35:27 +02:00
parent 0a82816272
commit d5402134ba
Signed by: koalp
GPG Key ID: 35B21047DEB09A81
2 changed files with 8 additions and 10 deletions

View File

@ -9,20 +9,19 @@ pub struct TypeParser;
fn parse_type_array(pair: Pair<Rule>) -> Result<Vec<Box<Type>>> { fn parse_type_array(pair: Pair<Rule>) -> Result<Vec<Box<Type>>> {
let mut inner_rules = pair.into_inner(); let mut inner_rules = pair.into_inner();
let types = inner_rules.map( |pair| parse_type_object(pair).unwrap_or_default().into()).collect(); let types = inner_rules
.map(|pair| parse_type_object(pair).unwrap_or_default().into())
.collect();
Ok(types) Ok(types)
} }
fn parse_type_object(pair: Pair<Rule>) -> Result<Type> { fn parse_type_object(pair: Pair<Rule>) -> Result<Type> {
// verify that it's a type object ? // verify that it's a type object ?
let mut inner_rules = pair.into_inner(); let mut inner_rules = pair.into_inner();
let repr = inner_rules let repr = inner_rules.next().expect("Malformed parsing").as_str();
.next()
.expect("Malformed parsing")
.as_str();
let subtypes = match inner_rules.next() { let subtypes = match inner_rules.next() {
Some(a) => parse_type_array(a)?, Some(a) => parse_type_array(a)?,
None => vec![] None => vec![],
}; };
Ok(Type { Ok(Type {
repr: repr.into(), repr: repr.into(),
@ -30,7 +29,7 @@ fn parse_type_object(pair: Pair<Rule>) -> Result<Type> {
}) })
} }
fn parse_nested_type(pair: Pair<Rule>) -> Result<Type>{ fn parse_nested_type(pair: Pair<Rule>) -> Result<Type> {
match pair.as_rule() { match pair.as_rule() {
Rule::type_object => parse_type_object(pair), Rule::type_object => parse_type_object(pair),
_ => unreachable!(), _ => unreachable!(),

View File

@ -5,10 +5,9 @@ pub struct Type {
} }
impl Type { impl Type {
/// A function to print a Type struct as a python String /// A function to print a Type struct as a python String
/// ///
/// # Examples /// # Examples
/// ///
/// Creating a simple type and converting it into a python type String /// Creating a simple type and converting it into a python type String
/// ``` /// ```
@ -30,7 +29,7 @@ impl Type {
), ),
} }
} }
pub fn to_cpp(&self) -> String { pub fn to_cpp(&self) -> String {
match self.subtypes.len() { match self.subtypes.len() {
0 => format!("{}", self.repr), 0 => format!("{}", self.repr),