Drop unused comment

This commit is contained in:
Richard Feldman 2020-02-21 18:38:25 -08:00
parent 3e60a7b8ad
commit 8d39db305f

View File

@ -184,11 +184,7 @@ pub fn canonicalize_defs<'a>(
for pending_def in pending.into_iter() {
match pending_def {
PendingDef::Alias { name, vars, ann } =>
// name: Located<Symbol>,
// vars: Vec<Located<Lowercase>>,
// ann: &'a Located<ast::TypeAnnotation<'a>>,
{
PendingDef::Alias { name, vars, ann } => {
let symbol = name.value;
let mut can_ann =
canonicalize_annotation(env, &mut scope, &ann.value, ann.region, var_store);