Ignore:
File:
1 edited

Legend:

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

    r051bc69a r38aaacc2  
    4343
    4444        /* Keywords */
    45         lc_and,
    4645        lc_as,
    47         lc_break,
    4846        lc_bool,
    4947        lc_builtin,
    5048        lc_char,
    5149        lc_class,
     50        lc_constructor,
    5251        lc_deleg,
    5352        lc_do,
    54         lc_elif,
    5553        lc_else,
    5654        lc_end,
    57         lc_enum,
    5855        lc_except,
    5956        lc_false,
     
    6966        lc_is,
    7067        lc_nil,
    71         lc_not,
    72         lc_or,
    7368        lc_override,
    7469        lc_packed,
     
    153148
    154149        /** Coordinates of this lexical element */
    155         struct cspan *cspan;
     150        int line_no, col_0;
    156151} lem_t;
    157152
     
    173168        int col_adj;
    174169
    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 */
     170        /** @c b_true if we have the next lem in @c current */
    182171        bool_t current_valid;
    183172
Note: See TracChangeset for help on using the changeset viewer.