Changeset 76 in dev for BasicCompiler32/Compile_Var.cpp
- Timestamp:
- Mar 21, 2007, 9:26:56 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Var.cpp
r75 r76 3 3 4 4 //変数 5 VARIABLE *GlobalVar; 6 int MaxGlobalVarNum; 5 Variables globalVars; 7 6 int AllGlobalVarSize; 8 7 int AllInitGlobalVarSize; 9 VARIABLE *LocalVar; 10 int MaxLocalVarNum; 8 11 9 int AllLocalVarSize; 10 12 11 13 12 void SetRelativeOffset( Type &resultType, RELATIVE_VAR *pRelativeVar,const char *lpPtrOffset){ … … 351 350 //自身のオブジェクトのThisポインタをregにコピー 352 351 353 extern VARIABLE *LocalVar;354 352 RELATIVE_VAR RelativeVar; 355 353 RelativeVar.dwKind=VAR_LOCAL; … … 466 464 } 467 465 468 if( _memicmp(variable,"This.",5)==0){466 if(memicmp(variable,"This.",5)==0){ 469 467 //Thisオブジェクトのメンバを参照するとき 470 468 SlideString(variable+5,-5);
Note:
See TracChangeset
for help on using the changeset viewer.