Ignore:
File:
1 edited

Legend:

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

    r23de644 r37f527b  
    3030#define STREE_T_H_
    3131
    32 #include "bigint_t.h"
    3332#include "list_t.h"
    3433#include "builtin_t.h"
     
    5554
    5655typedef struct {
    57         bigint_t value;
     56        int value;
    5857} stree_lit_int_t;
    5958
     
    9089        bo_lt_equal,
    9190        bo_gt_equal,
    92         bo_plus,
    93         bo_minus,
    94         bo_mult
     91        bo_plus
    9592} binop_class_t;
    9693
    9794/** Unary operation class */
    9895typedef enum {
    99         uo_plus,
    100         uo_minus,
     96        uo_plus
    10197} unop_class_t;
    10298
     
    113109typedef struct {
    114110        /** Operation class */
    115         unop_class_t uc;
     111        unop_class_t oc;
    116112
    117113        /** Argument */
Note: See TracChangeset for help on using the changeset viewer.