Esempio n. 1
0
 /**
  * Accept for the visitor pattern.
  *
  * @param iVisitor the visitor
  */
 public Instruction accept(NodeVisitor iVisitor) {
   return iVisitor.visitMatchNode(this);
 }