Changes in uspace/app/sbi/src/stree_t.h [37f527b:23de644] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/stree_t.h
r37f527b r23de644 30 30 #define STREE_T_H_ 31 31 32 #include "bigint_t.h" 32 33 #include "list_t.h" 33 34 #include "builtin_t.h" … … 54 55 55 56 typedef struct { 56 int value;57 bigint_t value; 57 58 } stree_lit_int_t; 58 59 … … 89 90 bo_lt_equal, 90 91 bo_gt_equal, 91 bo_plus 92 bo_plus, 93 bo_minus, 94 bo_mult 92 95 } binop_class_t; 93 96 94 97 /** Unary operation class */ 95 98 typedef enum { 96 uo_plus 99 uo_plus, 100 uo_minus, 97 101 } unop_class_t; 98 102 … … 109 113 typedef struct { 110 114 /** Operation class */ 111 unop_class_t oc;115 unop_class_t uc; 112 116 113 117 /** Argument */
Note:
See TracChangeset
for help on using the changeset viewer.