mirror of
https://git.wuffs.org/MWCC
synced 2025-12-12 06:45:17 +00:00
getting close to done
This commit is contained in:
@@ -281,7 +281,7 @@ static Boolean dofreeaheap;
|
||||
static GList mlist;
|
||||
static Handle ts_buffer;
|
||||
static TStreamElement *ts_first;
|
||||
static TStreamElement *ts_last;
|
||||
TStreamElement *ts_last;
|
||||
TStreamElement *ts_current;
|
||||
static SInt32 ts_elements;
|
||||
SInt32 ts_preread_elements;
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -93,7 +93,7 @@ void CScope_SetFunctionScope(Object *function, CScopeSave *save) {
|
||||
}
|
||||
}
|
||||
|
||||
void CScope_SetMethodScope(Object *function, TypeClass *cls, Boolean unknownFlag, CScopeSave *save) {
|
||||
void CScope_SetMethodScope(Object *function, TypeClass *cls, Boolean is_static, CScopeSave *save) {
|
||||
save->current = cscope_current;
|
||||
save->currentclass = cscope_currentclass;
|
||||
save->currentfunc = cscope_currentfunc;
|
||||
@@ -102,7 +102,7 @@ void CScope_SetMethodScope(Object *function, TypeClass *cls, Boolean unknownFlag
|
||||
cscope_currentfunc = function;
|
||||
cscope_currentclass = cls;
|
||||
cscope_current = cls->nspace;
|
||||
cscope_is_member_func = !unknownFlag;
|
||||
cscope_is_member_func = !is_static;
|
||||
}
|
||||
|
||||
void CScope_RestoreScope(CScopeSave *saved) {
|
||||
|
||||
Reference in New Issue
Block a user