aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/core/Symbols.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-02-29 21:18:52 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-05-28 21:47:28 +0200
commitca2fb9d4890b0fd58e071b0c7baae8bdeaf9fcd4 (patch)
tree703e8f4be720635fa219ee034a5f16e7d22005e6 /src/dotty/tools/dotc/core/Symbols.scala
parent5d6cc456564d54c21da583ed425e73a99a014a9c (diff)
downloaddotty-ca2fb9d4890b0fd58e071b0c7baae8bdeaf9fcd4.tar.gz
dotty-ca2fb9d4890b0fd58e071b0c7baae8bdeaf9fcd4.tar.bz2
dotty-ca2fb9d4890b0fd58e071b0c7baae8bdeaf9fcd4.zip
Avoid issues when calling methods on root package symbol
SymDenotations#topLevelClass: don't throw an exception Symbols#associateFile: avoid infinite loop
Diffstat (limited to 'src/dotty/tools/dotc/core/Symbols.scala')
-rw-r--r--src/dotty/tools/dotc/core/Symbols.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Symbols.scala b/src/dotty/tools/dotc/core/Symbols.scala
index 4c1654e47..1b605e24f 100644
--- a/src/dotty/tools/dotc/core/Symbols.scala
+++ b/src/dotty/tools/dotc/core/Symbols.scala
@@ -519,7 +519,7 @@ object Symbols {
/** The source or class file from which this class was generated, null if not applicable. */
override def associatedFile(implicit ctx: Context): AbstractFile =
- if (assocFile != null || (this.owner is PackageClass)) assocFile
+ if (assocFile != null || (this.owner is PackageClass) || this.isEffectiveRoot) assocFile
else super.associatedFile
final def classDenot(implicit ctx: Context): ClassDenotation =