Lines Matching refs:mode
12 * with the assigned mode.
19 private $mode;
21 public function __construct(int $mode)
23 $this->mode = $mode;
27 * Get the lexer mode this action should transition the lexer to.
29 * @return int The lexer mode for this `pushMode` command.
33 return $this->mode;
64 $lexer->pushMode($this->mode);
69 return Hasher::hash($this->getActionType(), $this->mode);
82 return $this->mode === $other->mode;
87 return \sprintf('pushMode(%d)', $this->mode);