Changeset 391 in dev for trunk/abdev/BasicCompiler64
- Timestamp:
- Feb 14, 2008, 2:50:50 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler64
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Object.cpp
r370 r391 48 48 } 49 49 50 //コンストラクタを呼び出す51 Opcode_CallProc(CreateParameter,52 pUserProc,53 PROCFLAG_NEW,"");54 55 50 { 56 51 // 動的型情報をセットする … … 70 65 } 71 66 } 67 68 //コンストラクタを呼び出す 69 Opcode_CallProc(CreateParameter, 70 pUserProc, 71 PROCFLAG_NEW,""); 72 72 73 73 if(bSomeObjects){ -
trunk/abdev/BasicCompiler64/Compile_Statement.cpp
r386 r391 502 502 503 503 // 未定義の場合は自動的に定義する 504 sprintf(temporary,"%s %c%c%s", variable, 1, ESC_AS, collectionType.GetActualGenericType(0).GetClass().GetFullName().c_str() );504 sprintf(temporary,"%s=Nothing%c%c%s", variable, 1, ESC_AS, collectionType.GetActualGenericType(0).GetClass().GetFullName().c_str() ); 505 505 OpcodeDim(temporary,DIMFLAG_INITDEBUGVAR); 506 506 }
Note:
See TracChangeset
for help on using the changeset viewer.