summaryrefslogtreecommitdiff
path: root/src/library/dotnet/runtime/SymtabAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/library/dotnet/runtime/SymtabAttribute.cs')
-rw-r--r--src/library/dotnet/runtime/SymtabAttribute.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/library/dotnet/runtime/SymtabAttribute.cs b/src/library/dotnet/runtime/SymtabAttribute.cs
new file mode 100644
index 0000000000..b5608fe208
--- /dev/null
+++ b/src/library/dotnet/runtime/SymtabAttribute.cs
@@ -0,0 +1,22 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $Id$
+
+namespace scala.runtime {
+
+ using System;
+
+ public class SymtabAttribute : Attribute {
+ public byte[] symtab;
+
+ public SymtabAttribute(byte[] symtab) { this.symtab = symtab; }
+ public SymtabAttribute() {}
+ }
+
+}