summaryrefslogtreecommitdiff
path: root/sources/scalac/atree/ACode.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scalac/atree/ACode.java')
-rw-r--r--sources/scalac/atree/ACode.java34
1 files changed, 34 insertions, 0 deletions
diff --git a/sources/scalac/atree/ACode.java b/sources/scalac/atree/ACode.java
new file mode 100644
index 0000000000..b863090773
--- /dev/null
+++ b/sources/scalac/atree/ACode.java
@@ -0,0 +1,34 @@
+/* ____ ____ ____ ____ ______ *\
+** / __// __ \/ __// __ \/ ____/ SOcos COmpiles Scala **
+** __\_ \/ /_/ / /__/ /_/ /\_ \ (c) 2002, LAMP/EPFL **
+** /_____/\____/\___/\____/____/ **
+\* */
+
+// $Id$
+
+package scalac.atree;
+
+/** This class represents attributed code. */
+public class ACode {
+
+ //########################################################################
+ // Public Cases
+
+ public case Void;
+
+ //########################################################################
+ // Public Fields
+
+ /** The source file position */
+ public int pos;
+
+ //########################################################################
+ // Public Methods
+
+ /** Returns a string representation of this code. */
+ public String toString() {
+ return new ATreePrinter().printCode(this).toString();
+ }
+
+ //########################################################################
+}