text = $text; $this->span = $span; } public function getText(): string { return $this->text; } public function getSpan(): FileSpan { return $this->span; } public function isPreserved(): bool { return $this->text[2] === '!'; } public function accept($visitor) { return $visitor->visitCssComment($this); } }