Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/tdata_t.h

    r074444f r23de644  
    3434/** Class of primitive type. */
    3535typedef enum {
    36         /** Boolean type */
    37         tpc_bool,
    38         /** Character type */
    39         tpc_char,
    4036        /** Integer type */
    4137        tpc_int,
     
    6157        /** CSI definition */
    6258        struct stree_csi *csi;
    63 
    64         /** (Real) type arguments */
    65         list_t targs; /* of tdata_item_t */
    6659} tdata_object_t;
    6760
     
    7770        list_t extents; /* of stree_expr_t */
    7871} tdata_array_t;
     72
     73/** Generic type. */
     74typedef struct {
     75} tdata_generic_t;
    7976
    8077/** Functional type. */
     
    9390        /** Array type item */
    9491        tic_tarray,
     92        /** Generic type item */
     93        tic_tgeneric,
    9594        /** Function type item */
    9695        tic_tfun,
     
    107106                tdata_object_t *tobject;
    108107                tdata_array_t *tarray;
     108                tdata_generic_t *tgeneric;
    109109                tdata_fun_t *tfun;
    110110        } u;
Note: See TracChangeset for help on using the changeset viewer.