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