Fix tabbing
[satune.git] / src / AST / element.h
index 4119b7d2f3dede9555fc7767167a3ae9882ac6af..da9b994e7df39219659b087c2631d9d7ff39c99b 100644 (file)
@@ -7,20 +7,22 @@
 
 #define GETELEMENTTYPE(o) (((Element*)o)->type)
 
+//FIXME:TALK ABOUT ELEMENT
 struct Element {
        ElementType type;
 };
 
 struct ElementSet {
-    Element base;
-    Set * set;
+       Element base;
+       Set * set;
+       ElementEncoding * encoding;
 };
 
-struct ElementFunction{
-    Element base;
-    Function * function;
-    VectorElement* Elements;
-    Boolean * overflowstatus;
+struct ElementFunction {
+       Element base;
+       Function * function;
+       VectorElement* Elements;
+       Boolean * overflowstatus;
 };
 
 Element * allocElementSet(Set *s);