Changeset 051bc69a in mainline for uspace/app/sbi/src/lex_t.h


Ignore:
Timestamp:
2010-05-08T08:10:44Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
640ffe6, c5cb943d
Parents:
25a76ab8
Message:

Update SBI to rev. 244.

File:
1 edited

Legend:

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

    r25a76ab8 r051bc69a  
    4343
    4444        /* Keywords */
     45        lc_and,
    4546        lc_as,
     47        lc_break,
    4648        lc_bool,
    4749        lc_builtin,
    4850        lc_char,
    4951        lc_class,
    50         lc_constructor,
    5152        lc_deleg,
    5253        lc_do,
     54        lc_elif,
    5355        lc_else,
    5456        lc_end,
     57        lc_enum,
    5558        lc_except,
    5659        lc_false,
     
    6669        lc_is,
    6770        lc_nil,
     71        lc_not,
     72        lc_or,
    6873        lc_override,
    6974        lc_packed,
     
    148153
    149154        /** Coordinates of this lexical element */
    150         int line_no, col_0;
     155        struct cspan *cspan;
    151156} lem_t;
    152157
     
    168173        int col_adj;
    169174
    170         /** @c b_true if we have the next lem in @c current */
     175        /** @c b_true if we have the previous lem in @c prev */
     176        bool_t prev_valid;
     177
     178        /** Previous lem (only valid if @c current_valid is true) */
     179        lem_t prev;
     180
     181        /** @c b_true if we have the current lem in @c current */
    171182        bool_t current_valid;
    172183
Note: See TracChangeset for help on using the changeset viewer.