Changeset 135 in dev for BasicCompiler_Common/Subroutine.cpp
- Timestamp:
- Jun 6, 2007, 12:58:40 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler_Common/Subroutine.cpp
r120 r135 300 300 bool GetReturnTypeOfIndexerGetterProc( const CClass &objClass, Type &resultType ){ 301 301 vector<UserProc *> subs; 302 objClass. EnumMethod( CALC_ARRAY_GET, subs );302 objClass.GetMethods().Enum( CALC_ARRAY_GET, subs ); 303 303 if( subs.size() == 0 ){ 304 304 return false; … … 462 462 } 463 463 464 GlobalProc *AddSubData( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, char *buffer,int nowLine, BOOL bVirtual,CClass *pobj_c, bool isStatic){464 GlobalProc *AddSubData( const NamespaceScopes &namespaceScopes, const NamespaceScopesCollection &importedNamespaces, char *buffer,int nowLine,bool isVirtual,CClass *pobj_c, bool isStatic){ 465 465 int i2,i3; 466 466 char temporary[8192];
Note:
See TracChangeset
for help on using the changeset viewer.