Changeset 508 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/WatchList.cpp
- Timestamp:
- Apr 29, 2008, 11:36:37 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/WatchList.cpp
r485 r508 13 13 //デバッグ用 14 14 #include "debug.h" 15 16 using namespace ActiveBasic::Compiler; 15 17 16 18 int Debugging_GetArray( const Subscripts &subscripts,char *array,const Type &type,LONG_PTR *plpOffset); … … 350 352 ///////////////// 351 353 if( UserProc::IsLocalAreaCompiling() ){ 352 const Variable *pVar = UserProc::CompilingUserProc().GetLocalVars().Find( Symbol( VarName ) );354 const Variable *pVar = UserProc::CompilingUserProc().GetLocalVars().Find( LexicalAnalyzer::FullNameToSymbol( VarName ) ); 353 355 354 356 if( pVar ){ … … 436 438 /////////////////// 437 439 438 const Variable *pVar = compiler.GetObjectModule().meta.GetGlobalVars().Find( VarName);440 const Variable *pVar = compiler.GetObjectModule().meta.GetGlobalVars().Find( LexicalAnalyzer::FullNameToSymbol( VarName ) ); 439 441 if( !pVar ){ 440 442 //一致しないとき
Note:
See TracChangeset
for help on using the changeset viewer.