Beispiel #1
0
 //------------------------------------------------------------
 // コンストラクタ。
 public TypeSymbolNode(ISymbolNode aParent, BCModule aBCModule, StaticTypeDef aStaticTypeDef)
 {
     mParent        = aParent;
     mBCModule      = aBCModule;
     mStaticTypeDef = aStaticTypeDef;
     mNodeList      = new SymbolNodeList();
 }
Beispiel #2
0
 //------------------------------------------------------------
 // コンストラクタ。
 public NamespaceSymbolNode(ISymbolNode aParent, Identifier aIdent)
 {
     mParent   = aParent;
     mIdent    = aIdent;
     mNodeList = new SymbolNodeList();
 }