4 * Symbol scoping is pretty simple.
6 * Copyright (C) 2003 Transmeta Corp.
9 * Licensed under the Open Software License version 1.1
13 struct token
*token
; /* Scope start information */
14 struct symbol_list
*symbols
; /* List of symbols in this scope */
24 static inline int toplevel(struct scope
*scope
)
26 return scope
== file_scope
|| scope
== global_scope
;
29 extern void start_file_scope(void);
30 extern void end_file_scope(void);
31 extern void new_file_scope(void);
33 extern void start_symbol_scope(void);
34 extern void end_symbol_scope(void);
36 extern void start_function_scope(void);
37 extern void end_function_scope(void);
39 extern void bind_scope(struct symbol
*, struct scope
*);
41 extern int is_outer_scope(struct scope
*);