private DeclarationStubVisitor(
     Scope globalScope,
     ParseTreeProperty <IPDecl> nodesToDeclarations)
 {
     this.nodesToDeclarations = nodesToDeclarations;
     scope = new StackProperty <Scope>(globalScope);
 }
Exemple #2
0
 private DeclarationVisitor(
     ITranslationErrorHandler handler,
     Scope topLevelScope,
     ParseTreeProperty <IPDecl> nodesToDeclarations)
 {
     Handler                  = handler;
     currentScope             = new StackProperty <Scope>(topLevelScope);
     this.nodesToDeclarations = nodesToDeclarations;
 }
Exemple #3
0
 set => SetValue(StackProperty, value);