From d78c9d360182d87ba78d55fa255859cc89e2d95d Mon Sep 17 00:00:00 2001 From: Dmitry Petrashko Date: Fri, 5 Sep 2014 12:51:36 +0200 Subject: Definitions used by pattern matcher --- src/dotty/tools/dotc/ast/Trees.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/dotty/tools/dotc/ast/Trees.scala') diff --git a/src/dotty/tools/dotc/ast/Trees.scala b/src/dotty/tools/dotc/ast/Trees.scala index ab8cf89a7..d92d82b5e 100644 --- a/src/dotty/tools/dotc/ast/Trees.scala +++ b/src/dotty/tools/dotc/ast/Trees.scala @@ -257,7 +257,8 @@ object Trees { * an UnAssignedTypeException is thrown. (Overridden by empty trees) */ def tpe: T @uncheckedVariance = { - if (myTpe == null) throw new UnAssignedTypeException(this) + if (myTpe == null) + throw new UnAssignedTypeException(this) myTpe } -- cgit v1.2.3