[206] | 1 | #include "stdafx.h"
|
---|
| 2 |
|
---|
| 3 | #include <jenga/include/smoothie/BasicFixed.h>
|
---|
| 4 | #include <jenga/include/smoothie/LexicalAnalysis.h>
|
---|
| 5 |
|
---|
| 6 | #include <Compiler.h>
|
---|
| 7 | #include <Symbol.h>
|
---|
| 8 |
|
---|
| 9 | Symbol::Symbol( const char *fullName )
|
---|
[271] | 10 | : isTargetObjectModule( true )
|
---|
[206] | 11 | {
|
---|
| 12 | char areaName[VN_SIZE] = ""; //オブジェクト変数
|
---|
| 13 | char nestName[VN_SIZE] = ""; //入れ子メンバ
|
---|
| 14 | bool isNest = SplitMemberName( fullName, areaName, nestName );
|
---|
| 15 |
|
---|
| 16 | namespaceScopes = NamespaceScopes( areaName );
|
---|
| 17 | name = nestName;
|
---|
| 18 | }
|
---|
| 19 | Symbol::Symbol( const string &fullName )
|
---|
[271] | 20 | : isTargetObjectModule( true )
|
---|
[206] | 21 | {
|
---|
| 22 | char areaName[VN_SIZE] = ""; //オブジェクト変数
|
---|
| 23 | char nestName[VN_SIZE] = ""; //入れ子メンバ
|
---|
| 24 | bool isNest = SplitMemberName( fullName.c_str(), areaName, nestName );
|
---|
| 25 |
|
---|
| 26 | namespaceScopes = NamespaceScopes( areaName );
|
---|
| 27 | name = nestName;
|
---|
| 28 | }
|
---|
| 29 |
|
---|
| 30 | bool Symbol::IsEqualSymbol( const NamespaceScopes &namespaceScopes, const string &name ) const
|
---|
| 31 | {
|
---|
| 32 | if( GetName() != name ){
|
---|
| 33 | return false;
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | return compiler.GetNamespaceSupporter().IsSameAreaNamespace( GetNamespaceScopes(), namespaceScopes );
|
---|
| 37 | }
|
---|
| 38 | bool Symbol::IsEqualSymbol( const Symbol &symbol ) const
|
---|
| 39 | {
|
---|
| 40 | if( IsEqualSymbol( symbol.GetNamespaceScopes(), symbol.GetName() ) )
|
---|
| 41 | {
|
---|
| 42 | return true;
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | if( symbol.GetNamespaceScopes().size() >= 1 )
|
---|
| 46 | {
|
---|
| 47 | // 静的メンバを考慮
|
---|
| 48 | NamespaceScopes namespaceScopes( symbol.GetNamespaceScopes() );
|
---|
| 49 | string name = namespaceScopes[namespaceScopes.size()-1] + "." + symbol.GetName();
|
---|
| 50 | namespaceScopes.pop_back();
|
---|
| 51 |
|
---|
| 52 | return IsEqualSymbol( namespaceScopes, name );
|
---|
| 53 | }
|
---|
| 54 | return false;
|
---|
| 55 | }
|
---|
[208] | 56 | bool Symbol::IsEqualSymbol( const char *fullName ) const
|
---|
[206] | 57 | {
|
---|
| 58 | char AreaName[VN_SIZE] = ""; //オブジェクト変数
|
---|
| 59 | char NestName[VN_SIZE] = ""; //入れ子メンバ
|
---|
[208] | 60 | bool isNest = SplitMemberName( fullName, AreaName, NestName );
|
---|
[206] | 61 |
|
---|
| 62 | if( IsEqualSymbol( NamespaceScopes( AreaName ), NestName ) ){
|
---|
| 63 | return true;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
| 66 | return false;
|
---|
| 67 | }
|
---|