From 84861dde32213919db3306c77283eacde70de389 Mon Sep 17 00:00:00 2001 From: collin Date: Mon, 26 Oct 2020 17:57:37 -0700 Subject: [PATCH] remove more unused code --- dynamic-check/src/dynamic_check.rs | 51 +----------------------------- 1 file changed, 1 insertion(+), 50 deletions(-) diff --git a/dynamic-check/src/dynamic_check.rs b/dynamic-check/src/dynamic_check.rs index 8790d86534..3a6cdaee77 100644 --- a/dynamic-check/src/dynamic_check.rs +++ b/dynamic-check/src/dynamic_check.rs @@ -34,7 +34,6 @@ use leo_typed::{ CircuitVariableDefinition, ConditionalNestedOrEndStatement, ConditionalStatement, - ConsoleFunctionCall, Declare, Expression, Function, @@ -404,7 +403,7 @@ impl Frame { self.parse_iteration(identifier, from, to, statements, span) } Statement::Expression(expression, span) => self.parse_statement_expression(expression, span), - Statement::Console(console_call) => self.parse_console_function_call(console_call), + Statement::Console(_console_call) => Ok(()), // Console function calls do not generate type assertions. } } @@ -635,14 +634,6 @@ impl Frame { Ok(()) } - /// - /// Collects `TypeAssertion` predicates from a console statement. - /// - fn parse_console_function_call(&mut self, _console_function_call: &ConsoleFunctionCall) -> Result<(), FrameError> { - // TODO (collinc97) find a way to fetch console function call types here - Ok(()) - } - /// /// Returns the type of an expression. /// @@ -1313,22 +1304,6 @@ impl Frame { } } } - - // Solve the `TypeAssertion`. - // - // If the `TypeAssertion` has a solution, then continue the loop. - // If the `TypeAssertion` returns a `TypeVariablePair`, then substitute the `TypeVariable` - // for it's paired `Type` in all `TypeAssertion`s. - // if let Some(pair) = type_assertion.solve()? { - // // Substitute the `TypeVariable` for it's paired `Type` in all `TypeAssertion`s. - // for original in &mut unsolved { - // original.substitute(&pair.0, &pair.1) - // } - // - // for original in &mut unsolved_membership { - // original.substitute(&pair.0, &pair.1) - // } - // }; } // Solve all type membership assertions. @@ -1340,18 +1315,6 @@ impl Frame { type_assertion.evaluate()?; } - // for type_assertion in unsolved.pop() { - // if let Some((type_variable, type_)) = type_assertion.get_substitute() { - // // Substitute type variable in unsolved type assertions - // for mut original in unsolved { - // original.substitute(type_variable, type_) - // } - // } - // } - - // Return a new resolved function struct. - // Function::new(self) - Ok(()) } } @@ -1575,18 +1538,6 @@ impl TypeMembership { )) } } - - /// - /// Returns the (type variable, type) pair from this assertion. - /// - pub fn get_pair(&self) -> Option<(TypeVariable, Type)> { - // match (&self.left, &self.right) { - // (Type::TypeVariable(variable), type_) => Some((variable.clone(), type_.clone())), - // (type_, Type::TypeVariable(variable)) => Some((variable.clone(), type_.clone())), - // (_type1, _type2) => None, // No (type variable, type) pair can be returned from two types - // } - unimplemented!() - } } /// A predicate that evaluates equality between two `Type`s.