Changeset 598 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/hash.cpp
- Timestamp:
- May 10, 2008, 8:16:16 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/hash.cpp
r576 r598 82 82 if( !pobj_c ) 83 83 { 84 pobj_c=compiler.GetObjectModule().meta.FindClassSupportedTypeDef(ObjName); 84 pobj_c = compiler.GetObjectModule().meta.FindClassSupportedTypeDef( 85 LexicalAnalyzer::FullNameToSymbol( ObjName ) 86 ); 85 87 if( pobj_c ){ 86 88 isStatic = true; … … 160 162 161 163 const UserProc *GetClassMethod( const char *className, const char *methodName ){ 162 const CClass *pClass = compiler.GetObjectModule().meta.FindClassSupportedTypeDef( className ); 164 const CClass *pClass = compiler.GetObjectModule().meta.FindClassSupportedTypeDef( 165 LexicalAnalyzer::FullNameToSymbol( className ) 166 ); 163 167 if( pClass ){ 164 168 std::vector<const UserProc *> userProcs;
Note:
See TracChangeset
for help on using the changeset viewer.