Changes in uspace/app/sbi/src/stree_t.h [051bc69a:c5cb943d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/stree_t.h
r051bc69a rc5cb943d 639 639 /** Variadic argument or @c NULL if none. */ 640 640 stree_proc_arg_t *varg; 641 642 /** Type of the property */ 643 struct tdata_item *titem; 641 644 } stree_prop_t; 642 645 … … 698 701 struct stree_symbol *symbol; 699 702 700 /** Type expression referencing base CSI. */701 stree_texpr_t *base_csi_ref;703 /** Type expressions referencing inherited CSIs. */ 704 list_t inherit; /* of stree_texpr_t */ 702 705 703 706 /** Base CSI. Only available when ancr_state == ws_visited. */ 704 707 struct stree_csi *base_csi; 708 709 /** Types of implemented or accumulated interfaces. */ 710 list_t impl_if_ti; /* of tdata_item_t */ 705 711 706 712 /** Node state for ancr walks. */ … … 736 742 typedef enum { 737 743 /** Builtin symbol (interpreter hook) */ 738 sac_builtin 744 sac_builtin, 745 746 /** Static symbol */ 747 sac_static 739 748 } symbol_attr_class_t; 740 749
Note:
See TracChangeset
for help on using the changeset viewer.