コード例 #1
0
ファイル: ListBlock.php プロジェクト: fluxbb/commonmark
 public function visit(NodeVisitorInterface $visitor)
 {
     $visitor->enterListBlock($this);
     parent::visit($visitor);
     $visitor->leaveListBlock($this);
 }