Skip to content

Commit bbed9b1

Browse files
committed
update ref version, not sure why end marker breaks
1 parent 0a33ad3 commit bbed9b1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

library/src/scala/internal/quoted/Matcher.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ private[quoted] object Matcher {
8686
case _ => notMatched
8787
}
8888

89-
private given treeListOps: extension (scrutinees: List[Tree]) with
89+
private given treeListOps: (scrutinees: List[Tree]) extended with {
9090

9191
/** Check that all trees match with =?= and concatenate the results with && */
9292
def =?= (patterns: List[Tree])(given Context, Env): Matching =
9393
matchLists(scrutinees, patterns)(_ =?= _)
9494

95-
end treeListOps
95+
}//end treeListOps
9696

97-
private given treeOps: extension (scrutinee0: Tree) with
97+
private given treeOps: (scrutinee0: Tree) extended with {
9898

9999
/** Check that the trees match and return the contents from the pattern holes.
100100
* Return None if the trees do not match otherwise return Some of a tuple containing all the contents in the holes.
@@ -275,7 +275,7 @@ private[quoted] object Matcher {
275275
notMatched
276276
}
277277
}
278-
end treeOps
278+
}//end treeOps
279279

280280
private def treeOptMatches(scrutinee: Option[Tree], pattern: Option[Tree])(given Context, Env): Matching = {
281281
(scrutinee, pattern) match {

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ object MyScalaJSPlugin extends AutoPlugin {
5858
}
5959

6060
object Build {
61-
val referenceVersion = "0.21.0-bin-20191119-7c7fffa-NIGHTLY"
61+
val referenceVersion = "0.21.0-bin-20191204-5a695a5-NIGHTLY"
6262

6363
val baseVersion = "0.21.0"
6464
val baseSbtDottyVersion = "0.3.5"

0 commit comments

Comments
 (0)