Lines Matching refs:line
24 public int $line; variable in PhpParser\\Internal\\TokenPolyfill
42 final public function __construct(int $id, string $text, int $line = -1, int $pos = -1) { argument
45 $this->line = $line;
128 $line = 1;
138 $tokens[] = new static(\ord('"'), $token, $line, $pos);
141 $tokens[] = new static(\ord($token), $token, $line, $pos);
154 $tokens[] = new static($id, $text, $line, $pos);
163 $tokens[] = new static(\T_WHITESPACE, $trailingNewline, $line, $pos);
164 $line++;
202 $tokens[] = new static($id, $newText, $line, $pos);
209 $tokens[] = new static($id, $text, $line, $pos);
210 $line += \substr_count($text, "\n");