summaryrefslogtreecommitdiff
path: root/sources/scalac/atree
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2003-11-05 17:56:28 +0000
committerpaltherr <paltherr@epfl.ch>2003-11-05 17:56:28 +0000
commite3e27c87855aea7d0148724c7e0e3b855e3e5ae5 (patch)
tree27247cfb8335f568cd3326f6591e89a6b3d786a6 /sources/scalac/atree
parent394a7757233ed22fb837bcdbb598eb210c636196 (diff)
downloadscala-e3e27c87855aea7d0148724c7e0e3b855e3e5ae5.tar.gz
scala-e3e27c87855aea7d0148724c7e0e3b855e3e5ae5.tar.bz2
scala-e3e27c87855aea7d0148724c7e0e3b855e3e5ae5.zip
- Added atree/AInvokeStyle.java
Diffstat (limited to 'sources/scalac/atree')
-rw-r--r--sources/scalac/atree/AInvokeStyle.java41
1 files changed, 41 insertions, 0 deletions
diff --git a/sources/scalac/atree/AInvokeStyle.java b/sources/scalac/atree/AInvokeStyle.java
new file mode 100644
index 0000000000..7717c2d37c
--- /dev/null
+++ b/sources/scalac/atree/AInvokeStyle.java
@@ -0,0 +1,41 @@
+/* ____ ____ ____ ____ ______ *\
+** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** /_____/\____/\___/\____/____/ **
+\* */
+
+// $Id$
+
+package scalac.atree;
+
+import scalac.util.Debug;
+
+/** This class represents a method invocation style. */
+public class AInvokeStyle {
+
+ //########################################################################
+ // Public Cases
+
+ public case New;
+ public case Static;
+ public case Dynamic;
+
+ //########################################################################
+ // Public Methods
+
+ /** Returns a string representation of this style. */
+ public String toString() {
+ switch (this) {
+ case New:
+ return "new";
+ case Static:
+ return "static";
+ case Dynamic:
+ return "dynamic";
+ default:
+ throw Debug.abort("unknown case", this);
+ }
+ }
+
+ //########################################################################
+}