예제 #1
0
 /// <summary>
 /// Constructor of VisitorSymbolIdentification
 /// <param name="directories">A mapping between each sort file name and its full directory name</param>
 /// </summary>
 public VisitorSymbolIdentification(IDictionary <string, string> directories)
 {
     this.table            = new SymbolTable();
     this.usings           = new List <string>();
     this.manager          = new DynVarManagement.DynVarManager();
     this.currentNamespace = "";
     this.currentClass     = "";
     this.currentMethod    = "";
     this.directories      = directories;
 }