Changeset 182 in dev for trunk/abdev/BasicCompiler_Common/WatchList.cpp
- Timestamp:
- Jun 24, 2007, 6:49:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/WatchList.cpp
r140 r182 1 #include <jenga/include/smoothie/Smoothie.h> 2 1 3 #include "common.h" 2 4 … … 316 318 GlobalProc *pUserProc = GetSubFromObp(obp_Rip); 317 319 318 foreach( Variable *pVar, pUserProc->localVars ){320 BOOST_FOREACH( Variable *pVar, pUserProc->localVars ){ 319 321 if( pVar->GetName() == "_System_LocalThis" ){ 320 322 return pVar->offset; … … 369 371 } 370 372 371 if( pobj_CompilingClass){373 if(Smoothie::Temp::pCompilingClass){ 372 374 /////////////////////// 373 375 // クラスメンバの参照 … … 383 385 384 386 bool isFound = false; 385 BOOST_FOREACH( CMember *pMember, pobj_CompilingClass->GetDynamicMembers() ){387 BOOST_FOREACH( CMember *pMember, Smoothie::Temp::pCompilingClass->GetDynamicMembers() ){ 386 388 if( pMember->GetName() == VarName ){ 387 389 isFound = true; … … 412 414 pRelativeVar->dwKind=VAR_DIRECTMEM; 413 415 414 i3=Debugging_GetMember(* pobj_CompilingClass,variable,pRelativeVar,resultType,1);416 i3=Debugging_GetMember(*Smoothie::Temp::pCompilingClass,variable,pRelativeVar,resultType,1); 415 417 if(i3==0){ 416 418 //式エラー
Note:
See TracChangeset
for help on using the changeset viewer.