Lines Matching refs:scope
30 struct scope {
31 struct symbol_list *symbols; /* List of symbols in this scope */
32 struct scope *next;
35 extern struct scope
42 static inline int toplevel(struct scope *scope)
44 return scope == file_scope || scope == global_scope;
61 extern void bind_scope(struct symbol *, struct scope *);
62 extern void rebind_scope(struct symbol *, struct scope *);
64 extern int is_outer_scope(struct scope *);
65 extern int is_in_scope(struct scope *outer, struct scope *inner);