Lines Matching refs:set
12 * A transition containing a set of values.
17 public $set;
19 public function __construct(ATNState $target, ?IntervalSet $set = null)
23 if ($set !== null) {
24 $this->set = $set;
26 $this->set = new IntervalSet();
27 $this->set->addOne(Token::INVALID_TYPE);
33 return $this->set->contains($symbol);
38 return $this->set;
53 && $this->set->equals($other->set)
59 return (string) $this->set;