remove print
This commit is contained in:
parent
39d616fca9
commit
3f19bac343
1 changed files with 0 additions and 3 deletions
|
@ -795,7 +795,6 @@ impl<'ast> Checker<'ast> {
|
|||
module_id: &ModuleId,
|
||||
types: &TypeMap,
|
||||
) -> Result<TypedStatement<'ast, T>, Vec<ErrorInner>> {
|
||||
println!("{}", stat);
|
||||
|
||||
let pos = stat.pos();
|
||||
|
||||
|
@ -935,8 +934,6 @@ impl<'ast> Checker<'ast> {
|
|||
// Right side has to be a function call
|
||||
Expression::FunctionCall(fun_id, arguments) => {
|
||||
|
||||
println!("{:?}", assignees);
|
||||
|
||||
// check lhs assignees are defined
|
||||
let (assignees, errors): (Vec<_>, Vec<_>) = assignees.into_iter().map(|a| self.check_assignee(a, module_id, types)).partition(|r| r.is_ok());
|
||||
|
||||
|
|
Loading…
Reference in a new issue