Changeset 508 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Symbol.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/src/Symbol.cpp
r504 r508 5 5 6 6 const NamespaceSupporter *Symbol::namespaceSupporter = NULL; 7 8 Symbol::Symbol( const char *fullName )9 : isTargetObjectModule( true )10 {11 char areaName[VN_SIZE] = ""; //オブジェクト変数12 char nestName[VN_SIZE] = ""; //入れ子メンバ13 bool isNest = SplitMemberName( fullName, areaName, nestName );14 15 namespaceScopes = NamespaceScopes( areaName );16 name = nestName;17 }18 Symbol::Symbol( const string &fullName )19 : isTargetObjectModule( true )20 {21 char areaName[VN_SIZE] = ""; //オブジェクト変数22 char nestName[VN_SIZE] = ""; //入れ子メンバ23 bool isNest = SplitMemberName( fullName.c_str(), areaName, nestName );24 25 namespaceScopes = NamespaceScopes( areaName );26 name = nestName;27 }28 7 29 8 std::string Symbol::GetFullName() const
Note:
See TracChangeset
for help on using the changeset viewer.