Home | History | Annotate | Download | only in program

Lines Matching defs:current_scope

105     struct scope_level *current_scope;
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) {
161 struct scope_level *const scope = table->current_scope;
164 table->current_scope = scope->next;
191 scope->next = table->current_scope;
192 table->current_scope = scope;
364 sym->next_with_same_scope = table->current_scope->symbols;
373 table->current_scope->symbols = sym;
420 for (top_scope = table->current_scope
477 while (table->current_scope != NULL) {