コード例 #1
0
 protected void AddVisitation(BaseInstruction instruction, NodeVisitationDelegate visitation)
 {
     visitationDictionary.Add(instruction, new Tuple <ContextVisitationDelegate, NodeVisitationDelegate>(null, visitation));
 }
コード例 #2
0
 protected void AddVisitation(BaseInstruction instruction, NodeVisitationDelegate visitation)
 {
     visitationNodes[instruction.ID] = visitation;
 }
コード例 #3
0
 protected void AddVisitation(BaseInstruction instruction, NodeVisitationDelegate method)
 {
     nodeVisitationDictionary.Add(instruction, method);
 }