mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-23 15:22:40 +01:00
Fix brace formatting linter rule after XHPAST changes
Summary: Adjusts `ArcanistBraceFormattingXHPASTLinterRule` after changes to the way in which XHPAST parses namespaces. Depends on D14498. Test Plan: Unit tests are now passing. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D14499
This commit is contained in:
parent
a4dba24c46
commit
e3e232530c
1 changed files with 11 additions and 4 deletions
|
@ -61,10 +61,17 @@ final class ArcanistBraceFormattingXHPASTLinterRule
|
|||
}
|
||||
|
||||
$type = $parent->getTypeName();
|
||||
if ($type != 'n_STATEMENT_LIST' && $type != 'n_DECLARE') {
|
||||
$this->raiseLintAtNode(
|
||||
$node,
|
||||
pht('Use braces to surround a statement block.'));
|
||||
switch ($type) {
|
||||
case 'n_DECLARE':
|
||||
case 'n_NAMESPACE':
|
||||
case 'n_STATEMENT_LIST':
|
||||
break;
|
||||
|
||||
default:
|
||||
$this->raiseLintAtNode(
|
||||
$node,
|
||||
pht('Use braces to surround a statement block.'));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue