Changes in uspace/app/sbi/src/lex_t.h [38aaacc2:051bc69a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/lex_t.h
r38aaacc2 r051bc69a 43 43 44 44 /* Keywords */ 45 lc_and, 45 46 lc_as, 47 lc_break, 46 48 lc_bool, 47 49 lc_builtin, 48 50 lc_char, 49 51 lc_class, 50 lc_constructor,51 52 lc_deleg, 52 53 lc_do, 54 lc_elif, 53 55 lc_else, 54 56 lc_end, 57 lc_enum, 55 58 lc_except, 56 59 lc_false, … … 66 69 lc_is, 67 70 lc_nil, 71 lc_not, 72 lc_or, 68 73 lc_override, 69 74 lc_packed, … … 148 153 149 154 /** Coordinates of this lexical element */ 150 int line_no, col_0;155 struct cspan *cspan; 151 156 } lem_t; 152 157 … … 168 173 int col_adj; 169 174 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 */ 171 182 bool_t current_valid; 172 183
Note:
See TracChangeset
for help on using the changeset viewer.