aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-06 17:49:10 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-08 13:33:51 +0200
commitebe3290f487b12cf4778c5affeeb42324cd5fbc6 (patch)
tree2326e424cd4f1255c12e1b140ff0d96b728d94a8 /src/dotty/tools/backend/jvm/DottyBackendInterface.scala
parentff091be1075911d5979d7b34ebcec7153eb5486e (diff)
downloaddotty-ebe3290f487b12cf4778c5affeeb42324cd5fbc6.tar.gz
dotty-ebe3290f487b12cf4778c5affeeb42324cd5fbc6.tar.bz2
dotty-ebe3290f487b12cf4778c5affeeb42324cd5fbc6.zip
Remove NonExistentTree.
Diffstat (limited to 'src/dotty/tools/backend/jvm/DottyBackendInterface.scala')
-rw-r--r--src/dotty/tools/backend/jvm/DottyBackendInterface.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dotty/tools/backend/jvm/DottyBackendInterface.scala b/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
index 7795f3b95..4aa2e75dd 100644
--- a/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
+++ b/src/dotty/tools/backend/jvm/DottyBackendInterface.scala
@@ -33,7 +33,6 @@ import StdNames.nme
import NameOps._
class DottyBackendInterface()(implicit ctx: Context) extends BackendInterface{
- trait NonExistentTree extends tpd.Tree
type Symbol = Symbols.Symbol
type Type = Types.Type
type Tree = tpd.Tree
@@ -68,8 +67,8 @@ class DottyBackendInterface()(implicit ctx: Context) extends BackendInterface{
type Modifiers = tpd.Modifiers
type Annotation = Annotations.Annotation
type ArrayValue = tpd.JavaSeqLiteral
- type ApplyDynamic = NonExistentTree
- type ModuleDef = NonExistentTree
+ type ApplyDynamic = Null
+ type ModuleDef = Null
type LabelDef = tpd.DefDef
type Closure = tpd.Closure