protected void AddVisitation(BaseInstruction instruction, ContextVisitationDelegate visitation)
 {
     visitationDictionary.Add(instruction, new Tuple <ContextVisitationDelegate, NodeVisitationDelegate>(visitation, null));
 }
Ejemplo n.º 2
0
 protected void AddVisitation(BaseInstruction instruction, ContextVisitationDelegate visitation)
 {
     visitationContexts[instruction.ID] = visitation;
 }
 protected void AddVisitation(BaseInstruction instruction, ContextVisitationDelegate method)
 {
     contextVisitationDictionary.Add(instruction, method);
 }