0 && $text[$start] === "\n" ) {
$start++;
$length--;
$sourceStart++;
$sourceLength--;
}
$mode = $this->dispatcher->restoreMode();
if ( $length ) {
$mode->characters( $text, $start, $length, $sourceStart, $sourceLength );
}
}
public function endDocument( $pos ) {
$this->dispatcher->restoreMode()
->endDocument( $pos );
}
public function startTag( $name, Attributes $attrs, $selfClose, $sourceStart, $sourceLength ) {
$this->dispatcher->restoreMode()
->startTag( $name, $attrs, $selfClose, $sourceStart, $sourceLength );
}
public function endTag( $name, $sourceStart, $sourceLength ) {
$this->dispatcher->restoreMode()
->endTag( $name, $sourceStart, $sourceLength );
}
public function doctype( $name, $public, $system, $quirks, $sourceStart, $sourceLength ) {
$this->dispatcher->restoreMode()
->doctype( $name, $public, $system, $quirks, $sourceStart, $sourceLength );
}
public function comment( $text, $sourceStart, $sourceLength ) {
$this->dispatcher->restoreMode()
->comment( $text, $sourceStart, $sourceLength );
}
}