We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79c6008 commit 495029cCopy full SHA for 495029c
shared/src/main/scala/scala/util/parsing/combinator/lexical/Scanners.scala
@@ -51,7 +51,7 @@ trait Scanners extends Parsers {
51
override def source: java.lang.CharSequence = in.source
52
override def offset: Int = in.offset
53
def first = tok
54
- def rest = new Scanner(rest2)
+ def rest: Scanner = new Scanner(rest2)
55
def pos = rest1.pos
56
def atEnd = in.atEnd || skip(in).atEnd
57
}
0 commit comments