summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2009-07-14 18:15:14 +0000
committerPaul Phillips <paulp@improving.org>2009-07-14 18:15:14 +0000
commitd9418567e6a467f3ac47b70552476e2647be8784 (patch)
treee9aa82f3d309608c59a723a8b8ad894b651d4290 /src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
parent0be42af7a28a92739712636289009f3996370388 (diff)
downloadscala-d9418567e6a467f3ac47b70552476e2647be8784.tar.gz
scala-d9418567e6a467f3ac47b70552476e2647be8784.tar.bz2
scala-d9418567e6a467f3ac47b70552476e2647be8784.zip
Enhanced repl based debugger to use manifests a...
Enhanced repl based debugger to use manifests and try to get a usable type out of it. It works for at least a useful subset of the types which one might want to inspect.
Diffstat (limited to 'src/compiler/scala/tools/nsc/symtab/SymbolTable.scala')
-rw-r--r--src/compiler/scala/tools/nsc/symtab/SymbolTable.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala b/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
index 50cccd0f05..9b5872aba5 100644
--- a/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
+++ b/src/compiler/scala/tools/nsc/symtab/SymbolTable.scala
@@ -106,9 +106,9 @@ abstract class SymbolTable extends Names
}
/** Break into repl debugger if assertion is true */
- def breakIf(assertion: => Boolean, args: Any*): Unit =
- if (assertion)
- Interpreter.break(args.toList)
+ // def breakIf(assertion: => Boolean, args: Any*): Unit =
+ // if (assertion)
+ // Interpreter.break(args.toList)
/** The set of all installed infotransformers */
var infoTransformers = new InfoTransformer {