Move parse::operator into module::operator

This commit is contained in:
Richard Feldman 2020-05-01 21:57:33 -04:00
parent f47d96e1a4
commit 101dc80ae5
13 changed files with 18 additions and 19 deletions

View file

@ -299,7 +299,7 @@ impl<'a> RocDocAllocator<'a> {
pub fn binop(
&'a self,
content: roc_parse::operator::BinOp,
content: roc_module::operator::BinOp,
) -> DocBuilder<'a, Self, Annotation> {
self.text(content.to_string()).annotate(Annotation::BinOp)
}