Changeset 536 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/WatchList.cpp
- Timestamp:
- May 3, 2008, 6:32:50 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/WatchList.cpp
r508 r536 379 379 } 380 380 381 if(compiler.pCompilingClass){ 381 if( compiler.IsCompilingClass() ) 382 { 382 383 /////////////////////// 383 384 // クラスメンバの参照 … … 392 393 //クラス内の動的メンバを参照するとき(通常) 393 394 394 if( !compiler. pCompilingClass->HasDynamicMember( VarName ) )395 if( !compiler.GetCompilingClass().HasDynamicMember( VarName ) ) 395 396 { 396 397 goto NonClassMember; … … 418 419 pRelativeVar->dwKind=VAR_DIRECTMEM; 419 420 420 i3=Debugging_GetMember( *compiler.pCompilingClass,variable,pRelativeVar,resultType,1);421 i3=Debugging_GetMember( compiler.GetCompilingClass(),variable,pRelativeVar,resultType,1); 421 422 if(i3==0){ 422 423 //式エラー
Note:
See TracChangeset
for help on using the changeset viewer.