summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean McDirmid <sean.mcdirmid@gmail.com>2008-07-09 10:55:17 +0000
committerSean McDirmid <sean.mcdirmid@gmail.com>2008-07-09 10:55:17 +0000
commit7b90be13587562ec02c1d4574abae8600d39bf28 (patch)
tree83806909bc73b9dd8a4ae18e66bfb1a4c30829d9 /src
parent29a41bcff5804c52a561e804d3a7885c3df49a16 (diff)
downloadscala-7b90be13587562ec02c1d4574abae8600d39bf28.tar.gz
scala-7b90be13587562ec02c1d4574abae8600d39bf28.tar.bz2
scala-7b90be13587562ec02c1d4574abae8600d39bf28.zip
Fixing broken build from last commit.
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/Interpreter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Interpreter.scala b/src/compiler/scala/tools/nsc/Interpreter.scala
index 58412908ae..452c0085c7 100644
--- a/src/compiler/scala/tools/nsc/Interpreter.scala
+++ b/src/compiler/scala/tools/nsc/Interpreter.scala
@@ -407,7 +407,7 @@ class Interpreter(val settings: Settings, out: PrintWriter) {
new CompilationUnit(
new BatchSourceFile("<console>", code.toCharArray()))
val scanner = new compiler.syntaxAnalyzer.UnitParser(unit);
- val xxx = scanner.templateStatSeq;
+ val xxx = scanner.templateStatSeq(false);
(xxx._2)
}
val (trees) = simpleParse(line)