Changeset 820 in dev for branches/egtra/ab5.0/abdev/ab_common/src
- Timestamp:
- Aug 7, 2011, 4:30:08 PM (13 years ago)
- Location:
- branches/egtra/ab5.0/abdev/ab_common/src/Lexical
- Files:
-
- 1 added
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Class.cpp
r803 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 #include <algorithm> 3 5 #include <boost/checked_delete.hpp> -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Interface.cpp
r750 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 Interface::Interface( const CClass *pInterfaceClass, const Types &actualTypeParameters ) -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Member.cpp
r640 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Meta.cpp
r803 r820 37 37 { 38 38 // 名前空間 39 BOOST_FOREACH( NamespaceScopes &namespaceScopes, meta.namespaceScopesCollection)39 foreach (NamespaceScopes const &namespaceScopes, meta.namespaceScopesCollection) 40 40 { 41 41 if( !this->namespaceScopesCollection.IsExist( namespaceScopes ) ) -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Method.cpp
r816 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 #include <stdexcept> 3 5 -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Namespace.cpp
r810 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 #include <algorithm> 3 5 -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/NamespaceSupporter.cpp
r750 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 using namespace ActiveBasic::Common::Lexical; -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/NativeCode.cpp
r750 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 #define BREAK_EIP(checkEip) (obp+0x00401000>=checkEip) -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Parameter.cpp
r708 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 Parameter::Parameter( const std::string &varName, const Type &type, bool isRef, const std::string initValue ) -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Procedure.cpp
r803 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Source.cpp
r769 r820 945 945 return true; 946 946 } 947 948 int SourceCodePosition::GetRelationalObjectModuleIndex() const949 {950 if( this->IsNothing() )951 {952 _ASSERTE( false );953 throw;954 }955 956 return relationalObjectModuleIndex;957 }958 bool SourceCodePosition::IsNothing() const959 {960 if( this->relationalObjectModuleIndex == -1 && this->pos == -1 )961 {962 return true;963 }964 965 if( this->relationalObjectModuleIndex == -1 || this->pos == -1 )966 {967 _ASSERTE( false );968 throw;969 }970 971 return false;972 } -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Symbol.cpp
r752 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 using namespace ActiveBasic::Common::Lexical; -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Template.cpp
r640 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 2 4 3 5 ExpandedTemplateClass::~ExpandedTemplateClass() -
branches/egtra/ab5.0/abdev/ab_common/src/Lexical/Type.cpp
r750 r820 1 1 #include "stdafx.h" 2 #include <jenga/include/jenga.h> 3 #include <abdev/ab_common/include/ab_common.h> 4 #include "Lexical/Type.h" 2 5 3 6 const int Type::basicTypeList[] = {
Note:
See TracChangeset
for help on using the changeset viewer.