コード例 #1
0
ファイル: Code.php プロジェクト: fluxbb/commonmark
 /**
  * Accept a visit from a node visitor.
  *
  * This method should instrument the visitor to handle this node correctly, and also pass it on to any child nodes.
  *
  * @param NodeVisitorInterface $visitor
  * @return void
  */
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->visitCode($this);
 }