Formatting
This commit is contained in:
@@ -237,7 +237,11 @@ impl<'a> Analyzer<'a> {
|
||||
Purity::Impure,
|
||||
)
|
||||
}
|
||||
BoundKind::Pipe { inputs, lambda, out_type } => {
|
||||
BoundKind::Pipe {
|
||||
inputs,
|
||||
lambda,
|
||||
out_type,
|
||||
} => {
|
||||
let mut analyzed_inputs = Vec::with_capacity(inputs.len());
|
||||
for input in inputs {
|
||||
analyzed_inputs.push(self.visit(Rc::new(input.clone())));
|
||||
@@ -288,7 +292,13 @@ impl<'a> Analyzer<'a> {
|
||||
p = p.min(vm.ty.purity);
|
||||
new_values.push(vm);
|
||||
}
|
||||
(BoundKind::Record { layout: layout.clone(), values: new_values }, p)
|
||||
(
|
||||
BoundKind::Record {
|
||||
layout: layout.clone(),
|
||||
values: new_values,
|
||||
},
|
||||
p,
|
||||
)
|
||||
}
|
||||
|
||||
BoundKind::Expansion {
|
||||
|
||||
Reference in New Issue
Block a user