1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00

Display other locations of lint errors

Summary:
Depends on D4392.

I don't plan on adding these to changesets.

Test Plan: Added `$message['locations'] = array(array('line' => 10));` in the code and displayed a revision with lint problems.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

Differential Revision: https://secure.phabricator.com/D4394
This commit is contained in:
vrana 2013-01-10 16:03:00 -08:00
parent d04bc0747c
commit dbeb60adbe

View file

@ -116,6 +116,17 @@ final class DifferentialLintFieldSpecification
'show' => $show, 'show' => $show,
); );
if (isset($message['locations'])) {
$locations = array();
foreach ($message['locations'] as $location) {
$other_line = idx($location, 'line');
$locations[] =
idx($location, 'path', $path).
($other_line ? ":{$other_line}" : "");
}
$description .= "\nOther locations: ".implode(", ", $locations);
}
if (strlen($description)) { if (strlen($description)) {
$rows[] = array( $rows[] = array(
'style' => 'details', 'style' => 'details',