League\CommonMark\DocParser::processInlines PHP Method

processInlines() private method

private processInlines ( League\CommonMark\ContextInterface $context, League\CommonMark\Node\NodeWalker $walker )
$context League\CommonMark\ContextInterface
$walker League\CommonMark\Node\NodeWalker
    private function processInlines(ContextInterface $context, NodeWalker $walker)
    {
        while (($event = $walker->next()) !== null) {
            if (!$event->isEntering()) {
                continue;
            }
            $node = $event->getNode();
            if ($node instanceof InlineContainer) {
                $this->inlineParserEngine->parse($node, $context->getDocument()->getReferenceMap());
            }
        }
    }