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