remove comment

This commit is contained in:
greg 2019-11-11 03:32:40 -08:00
parent a36be407ca
commit 2d0f558415
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ pub enum VisitorOutput<T, E> {
Err(E)
}
pub trait ExpressionVisitor {//TODO maybe this should be an associated type?
pub trait ExpressionVisitor {
type Output;
fn type_anno(&mut self, _anno: &TypeIdentifier) -> Self::Output;
fn nat_literal(&mut self, _value: &u64) -> Self::Output;