mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-04 03:36:34 +02:00
Added a note about global table
This commit is contained in:
parent
84d74409cb
commit
dcf9396be2
1 changed files with 3 additions and 1 deletions
|
@ -277,7 +277,9 @@ object find_or_add_symbol(const char *name){
|
||||||
|
|
||||||
/* END symbol table */
|
/* END symbol table */
|
||||||
|
|
||||||
/* Global table */
|
/* Global table
|
||||||
|
A list is appropriate for this table because the only time
|
||||||
|
we use it is to iterate over all the globals... */
|
||||||
list global_table = nil;
|
list global_table = nil;
|
||||||
|
|
||||||
void add_global(object *glo) {
|
void add_global(object *glo) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue