Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/hoa/compiler/Test/Integration/Llk/Rule/
H A DAnalyzer.php139 return $this->_case_repetition('?', 0, 1);
144 return $this->_case_repetition('+', 1, -1);
149 return $this->_case_repetition('*', 0, -1);
154 return $this->_case_repetition('{7,42}', 7, 42);
159 return $this->_case_repetition('{7,}', 7, -1);
164 return $this->_case_repetition('{7}', 7, 7);
167 protected function _case_repetition($quantifier, $min, $max) function in Hoa\\Compiler\\Test\\Integration\\Llk\\Rule\\Analyzer