aboutsummaryrefslogtreecommitdiff
path: root/tests/run/t1987b/PullIteratees.scala
blob: a5a3e65d8f08142de0044c29e1bb3df1099021f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package scales.xml

trait PullType
class QName
trait RetUrn[T]

/**
 * Iteratees related to pull parsing
 */
trait PullIteratees {
  /**
   * Without the overload it doesn't trigger the CCE, even though its
   * not used
   */
  def iterate(path: List[QName], xml: String): RetUrn[String] = null
  def iterate(path: List[QName], xml: Iterator[PullType]): RetUrn[String] = null
}