summaryrefslogtreecommitdiff
path: root/sources/scalac/atree
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2005-05-29 23:06:35 +0000
committermihaylov <mihaylov@epfl.ch>2005-05-29 23:06:35 +0000
commit08d6815870d309e1ce924a99f17f50c6e46f89cd (patch)
treeb02781adb87721405c94615ac91c57aa88c922c3 /sources/scalac/atree
parenta50fb39267918c2ff500143e2c622445edacdffa (diff)
downloadscala-08d6815870d309e1ce924a99f17f50c6e46f89cd.tar.gz
scala-08d6815870d309e1ce924a99f17f50c6e46f89cd.tar.bz2
scala-08d6815870d309e1ce924a99f17f50c6e46f89cd.zip
Initial support for attributes - only works for...
Initial support for attributes - only works for the scala.serializable attribute
Diffstat (limited to 'sources/scalac/atree')
-rw-r--r--sources/scalac/atree/AConstant.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/sources/scalac/atree/AConstant.java b/sources/scalac/atree/AConstant.java
index 2dcc80bbaf..12c58d5889 100644
--- a/sources/scalac/atree/AConstant.java
+++ b/sources/scalac/atree/AConstant.java
@@ -14,6 +14,8 @@ import scalac.symtab.Symbol;
/** This class represents a constant. */
public class AConstant {
+ public static final AConstant[] EMPTY_ARRAY = new AConstant[0];
+
//########################################################################
// Public Cases