Changeset 1ef0fc3 in mainline for uspace/app/sbi/src/lex_t.h


Ignore:
Timestamp:
2010-04-10T11:19:18Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d7e45c8
Parents:
2721a75 (diff), 074444f (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.
Message:

Merge from lp:~jsvoboda/helenos/sysel.

File:
1 edited

Legend:

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

    r2721a75 r1ef0fc3  
    3838
    3939        lc_ident,
     40        lc_lit_char,
    4041        lc_lit_int,
    4142        lc_lit_string,
     
    4344        /* Keywords */
    4445        lc_as,
     46        lc_bool,
    4547        lc_builtin,
     48        lc_char,
    4649        lc_class,
    4750        lc_constructor,
     
    5053        lc_end,
    5154        lc_except,
     55        lc_false,
    5256        lc_finally,
    5357        lc_for,
     
    7781        lc_then,
    7882        lc_this,
     83        lc_true,
    7984        lc_var,
    8085        lc_with,
     
    115120
    116121typedef struct {
     122        /* Character value */
     123        bigint_t value;
     124} lem_lit_char_t;
     125
     126typedef struct {
    117127        /* Integer value */
    118128        bigint_t value;
     
    131141        union {
    132142                lem_ident_t ident;
     143                lem_lit_char_t lit_char;
    133144                lem_lit_int_t lit_int;
    134145                lem_lit_string_t lit_string;
Note: See TracChangeset for help on using the changeset viewer.