ref: 66ade7ca925cf6042d72173afe59b76349533b01
parent: db3ef18d59af1f528cb4b12f9075396773b6dca4
author: Ori Bernstein <[email protected]>
date: Wed Oct 24 15:45:18 EDT 2012
Add comments to Ucon type in parse.h
--- a/parse/parse.h
+++ b/parse/parse.h
@@ -123,11 +123,11 @@
};
struct Ucon {
- int line;
- size_t id;
- Node *name;
- Type *utype;
- Type *etype;
+ int line; /* line declared on */
+ size_t id; /* unique id */
+ Node *name; /* ucon name */
+ Type *utype; /* type of the union this is an element of */
+ Type *etype; /* type for the element */
};
struct Cstr {