Changeset 1113c9e in mainline for uspace/app/sbi/src/stree_t.h
- Timestamp:
- 2010-06-09T19:03:24Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8eec3c8
- Parents:
- 8f80c77 (diff), c5cb943d (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/stree_t.h
r8f80c77 r1113c9e 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.