Home
last modified time | relevance | path

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

/template/strap/vendor/antlr/antlr4-php-runtime/src/Dfa/
H A DPredPrediction.php15 public $pred; variable in Antlr\\Antlr4\\Runtime\\Dfa\\PredPrediction
20 public function __construct(SemanticContext $pred, int $alt) argument
22 $this->pred = $pred;
28 return \sprintf('(%s, %d)', (string) $this->pred, $this->alt);
/template/strap/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DParserATNSimulator.php1336 $pred = $altToPred[$i];
1338 if ($pred === null) {
1340 } elseif ($pred !== SemanticContext::none()) {
1374 $pred = $altToPred[$i];
1378 $pairs[] = new PredPrediction($pred, $i);
1381 if ($pred !== SemanticContext::none()) {
1535 if ($pair->pred === SemanticContext::none()) {
1548 $pair->pred,
1575 SemanticContext $pred, argument
1580 return $pred->eval($this->parser, $parserCallStack);