Esempio n. 1
0
 public FunctionBinder(BoundScope programScope)
 {
     diagnostics = new DiagnosticContainer();
     functions   = new List <FunctionSymbol>();
     scope       = programScope;
 }
Esempio n. 2
0
 internal BoundScope(BoundScope parent)
 {
     Parent  = parent;
     symbols = new Dictionary <string, Symbol>();
 }