Lines Matching +refs:text +refs:line
26 protected $line = 0; variable in Antlr\\Antlr4\\Runtime\\CommonToken
66 protected $text; variable in Antlr\\Antlr4\\Runtime\\CommonToken
116 $this->line = $tokenSource->getLine();
148 $token->line = $this->line;
151 $token->setText($this->text);
168 return $this->line;
171 public function setLine(int $line) : void argument
173 $this->line = $line;
178 if ($this->text !== null) {
179 return $this->text;
202 * @param string $text The explicit text of the token, or `null`
206 public function setText(?string $text) : void argument
208 $this->text = $text;
298 $this->line,