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