Home
last modified time | relevance | path

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

/plugin/combo/vendor/antlr/antlr4-php-runtime/src/PredictionContexts/
H A DPredictionContext.php131 bool $rootIsWildcard, argument
140 return self::mergeSingletons($a, $b, $rootIsWildcard, $mergeCache);
144 // If one is $ and rootIsWildcard, return $ as * wildcard
145 if ($rootIsWildcard) {
168 return self::mergeArrays($a, $b, $rootIsWildcard, $mergeCache);
190 * @param bool $rootIsWildcard `true` if this is a local-context merge,
196 bool $rootIsWildcard, argument
213 $rootMerge = self::mergeRoot($a, $b, $rootIsWildcard);
228 $parent = self::merge($a->parent, $b->parent, $rootIsWildcard, $mergeCache);
312 * These local-context merge operations are used when `rootIsWildcard`
344 mergeRoot(SingletonPredictionContext $a, SingletonPredictionContext $b, bool $rootIsWildcard) global() argument
406 mergeArrays(ArrayPredictionContext $a, ArrayPredictionContext $b, bool $rootIsWildcard, DoubleKeyMap $mergeCache) global() argument
[all...]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/
H A DATNConfigSet.php169 $rootIsWildcard = !$this->fullCtx;
175 $merged = PredictionContext::merge($existing->context, $config->context, $rootIsWildcard, $mergeCache);