Home
last modified time | relevance | path

Searched refs:getCurrent (Results 1 – 3 of 3) sorted by relevance

/dokuwiki/_test/tests/Parsing/Lexer/
H A DStateStackTest.php12 $this->assertEquals("one", $stack->getCurrent());
25 $this->assertEquals("two", $stack->getCurrent());
27 $this->assertEquals("three", $stack->getCurrent());
29 $this->assertEquals("two", $stack->getCurrent());
31 $this->assertEquals("third", $stack->getCurrent());
34 $this->assertEquals("one", $stack->getCurrent());
/dokuwiki/inc/Parsing/Lexer/
H A DStateStack.php33 public function getCurrent() function in dokuwiki\\Parsing\\Lexer\\StateStack
H A DLexer.php268 $originalName = $this->modeStack->getCurrent();
285 if (! isset($this->regexes[$this->modeStack->getCurrent()])) {
291 if ($action = $this->regexes[$this->modeStack->getCurrent()]->split($raw, $split)) {