NTP Analyzer  0.8.2
Analyze the operation of time servers
Ntp.Analyzer.Config.Table.SymbolTable Class Reference

Public Member Functions

 SymbolTable ()
 
void Add (string name, ISyntaxNode node)
 
ISyntaxNode Lookup (string name)
 

Private Attributes

readonly Dictionary< string, ISyntaxNodetable
 

Detailed Description

Definition at line 27 of file SymbolTable.cs.

Constructor & Destructor Documentation

Ntp.Analyzer.Config.Table.SymbolTable.SymbolTable ( )
inline

Definition at line 29 of file SymbolTable.cs.

30  {
31  table = new Dictionary<string, ISyntaxNode>();
32  }
readonly Dictionary< string, ISyntaxNode > table
Definition: SymbolTable.cs:34

Member Function Documentation

void Ntp.Analyzer.Config.Table.SymbolTable.Add ( string  name,
ISyntaxNode  node 
)
inline

Definition at line 36 of file SymbolTable.cs.

Referenced by Ntp.Analyzer.Config.Compiler.ConfigParser.AddToSymbolTable().

37  {
38  table.Add(name, node);
39  }
readonly Dictionary< string, ISyntaxNode > table
Definition: SymbolTable.cs:34

Here is the caller graph for this function:

Member Data Documentation

readonly Dictionary<string, ISyntaxNode> Ntp.Analyzer.Config.Table.SymbolTable.table
private

Definition at line 34 of file SymbolTable.cs.


The documentation for this class was generated from the following file: