Home
last modified time | relevance | path

Searched refs:stackBottom (Results 1 – 2 of 2) sorted by relevance

/plugin/commonmark/vendor/league/commonmark/src/Delimiter/
H A DDelimiterStack.php41 private function findEarliest(?DelimiterInterface $stackBottom = null): ?DelimiterInterface
44 while ($delimiter !== null && $delimiter->getPrevious() !== $stackBottom) {
83 public function removeAll(?DelimiterInterface $stackBottom = null): void
85 while ($this->top && $this->top !== $stackBottom) {
123 public function processDelimiters(?DelimiterInterface $stackBottom, DelimiterProcessorCollection $processors): void
127 // Find first closer above stackBottom
128 $closer = $this->findEarliest($stackBottom);
146 while ($opener !== null && $opener !== $stackBottom && $opener !== ($openersBottom[$delimiterChar] ?? null)) {
212 $this->removeAll($stackBottom);
46 findEarliest(DelimiterInterface $stackBottom = null) global() argument
96 removeAll(DelimiterInterface $stackBottom = null) global() argument
148 processDelimiters(DelimiterInterface $stackBottom, DelimiterProcessorCollection $processors) global() argument
/plugin/commonmark/vendor/league/commonmark/src/Inline/Parser/
H A DCloseBracketParser.php