Changeset View
Changeset View
Standalone View
Standalone View
src/parser/diff/ArcanistDiffHunk.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Represents a contiguous set of added and removed lines in a diff. | * Represents a contiguous set of added and removed lines in a diff. | ||||
| * | |||||
| * @group diff | |||||
| */ | */ | ||||
| final class ArcanistDiffHunk { | final class ArcanistDiffHunk { | ||||
| protected $oldOffset; | protected $oldOffset; | ||||
| protected $oldLength; | protected $oldLength; | ||||
| protected $newOffset; | protected $newOffset; | ||||
| protected $newLength; | protected $newLength; | ||||
| protected $addLines; | protected $addLines; | ||||
| ▲ Show 20 Lines • Show All 159 Lines • Show Last 20 Lines | |||||