Changeset View
Changeset View
Standalone View
Standalone View
src/lint/ArcanistLintPatcher.php
| <?php | <?php | ||||
| /** | /** | ||||
| * Applies lint patches to the working copy. | * Applies lint patches to the working copy. | ||||
| * | |||||
| * @group lint | |||||
| */ | */ | ||||
| final class ArcanistLintPatcher { | final class ArcanistLintPatcher { | ||||
| private $dirtyUntil = 0; | private $dirtyUntil = 0; | ||||
| private $characterDelta = 0; | private $characterDelta = 0; | ||||
| private $modifiedData = null; | private $modifiedData = null; | ||||
| private $lineOffsets = null; | private $lineOffsets = null; | ||||
| private $lintResult = null; | private $lintResult = null; | ||||
| ▲ Show 20 Lines • Show All 131 Lines • Show Last 20 Lines | |||||