We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ce92c3 commit 0ab329aCopy full SHA for 0ab329a
compiler/src/dotty/tools/dotc/ast/untpd.scala
@@ -96,16 +96,6 @@ object untpd extends Trees.Instance[Untyped] with UntypedTreeInfo {
96
override def isEmpty = true
97
}
98
99
- /** A block arising from a right-associative infix operation, where, e.g.
100
- *
101
- * a +: b
102
103
- * is expanded to
104
105
- * { val x = a; b.+:(x) }
106
- */
107
- class InfixOpBlock(leftOperand: Tree, rightOp: Tree) extends Block(leftOperand :: Nil, rightOp)
108
-
109
/** A block generated by the XML parser, only treated specially by
110
* `Positioned#checkPos` */
111
class XMLBlock(stats: List[Tree], expr: Tree) extends Block(stats, expr)
0 commit comments