File tree 1 file changed +3
-2
lines changed
compiler/src/dotty/tools/dotc/core
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ import io.AbstractFile
31
31
import language .implicitConversions
32
32
import util .{NoSource , DotClass , Property }
33
33
import scala .collection .JavaConverters ._
34
+ import config .Printers .typr
34
35
35
36
/** Creation methods for symbols */
36
37
trait Symbols { this : Context =>
@@ -234,8 +235,8 @@ trait Symbols { this: Context =>
234
235
def newStubSymbol (owner : Symbol , name : Name , file : AbstractFile = null ): Symbol = {
235
236
def stubCompleter = new StubInfo ()
236
237
val normalizedOwner = if (owner is ModuleVal ) owner.moduleClass else owner
237
- println(s " creating stub for ${name.show}, owner = ${normalizedOwner.denot.debugString}, file = $file" )
238
- println(s " decls = ${normalizedOwner.unforcedDecls.toList.map(_.debugString).mkString(" \n " )}" ) // !!! DEBUG
238
+ typr. println(s " creating stub for ${name.show}, owner = ${normalizedOwner.denot.debugString}, file = $file" )
239
+ typr. println(s " decls = ${normalizedOwner.unforcedDecls.toList.map(_.debugString).mkString(" \n " )}" ) // !!! DEBUG
239
240
// if (base.settings.debug.value) throw new Error()
240
241
val stub = name match {
241
242
case name : TermName =>
You can’t perform that action at this time.
0 commit comments