Skip to content

Commit a86586b

Browse files
committedSep 8, 2021
Remove unused method
1 parent 7c6f9fe commit a86586b

File tree

1 file changed

+0
-16
lines changed
  • metarpheus/core/src/main/scala/io.buildo.metarpheus/core/extractors

1 file changed

+0
-16
lines changed
 

‎metarpheus/core/src/main/scala/io.buildo.metarpheus/core/extractors/package.scala

-16
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,6 @@ package object extractors {
1919
intermediate.API(models, routes)
2020
}
2121

22-
/**
23-
* Extract all terms from a sequence of applications of an infix operator
24-
* (which translates to nested `ApplyInfix`es).
25-
* e.g. getAllInfix(t1 + t2 + t3 + t4, "+") results in List(t1, t2, t3, t4)
26-
*/
27-
private[extractors] def getAllInfix(ainfix: Term, op: String): List[Term] = {
28-
import scala.meta._
29-
ainfix match {
30-
case Term.ApplyInfix(subinfix: Term.ApplyInfix, Term.Name(`op`), Nil, List(term: Term)) =>
31-
getAllInfix(subinfix, `op`) :+ term
32-
case Term.ApplyInfix(term1: Term, Term.Name(`op`), Nil, List(term2: Term)) =>
33-
term1 :: term2 :: Nil
34-
case term: Term => term :: Nil
35-
}
36-
}
37-
3822
/*
3923
* Convert a scala-meta representation of a type to a metarpheus
4024
* intermediate representation

0 commit comments

Comments
 (0)