summaryrefslogtreecommitdiff
path: root/sources/scalac
diff options
context:
space:
mode:
authorcremet <cremet@epfl.ch>2004-07-15 13:17:18 +0000
committercremet <cremet@epfl.ch>2004-07-15 13:17:18 +0000
commit49123a49a13f5915f142102b042414a296c6b084 (patch)
tree8ef97de23cef757a97443d3df1b8047c26d6e882 /sources/scalac
parentf4e913aa03294ecacf778fb11fabee986ced3725 (diff)
downloadscala-49123a49a13f5915f142102b042414a296c6b084.tar.gz
scala-49123a49a13f5915f142102b042414a296c6b084.tar.bz2
scala-49123a49a13f5915f142102b042414a296c6b084.zip
- I made scaladoc use a lazy version of the sco...
- I made scaladoc use a lazy version of the scope iterator.
Diffstat (limited to 'sources/scalac')
-rw-r--r--sources/scalac/symtab/Scope.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/sources/scalac/symtab/Scope.java b/sources/scalac/symtab/Scope.java
index f609bbf64a..ee20684da8 100644
--- a/sources/scalac/symtab/Scope.java
+++ b/sources/scalac/symtab/Scope.java
@@ -80,6 +80,10 @@ public class Scope {
*/
private Symbol[] elemsCache = null;
+ public Symbol[] getElemsCache() {
+ return elemsCache;
+ }
+
/** size and mask of hash tables
* todo: make hashtables grow?
*/