Page MenuHomePhabricator

Fix `LINT_ARRAY_SEPARATOR` for nested arrays
ClosedPublic

Authored by joshuaspence on Sep 25 2014, 2:53 AM.
Tags
None
Referenced Files
F14053931: D10558.diff
Fri, Nov 15, 8:45 PM
F14044327: D10558.diff
Tue, Nov 12, 3:47 PM
F14025382: D10558.diff
Thu, Nov 7, 5:13 PM
F13982655: D10558.diff
Sun, Oct 20, 12:56 AM
F13978343: D10558.id25383.diff
Fri, Oct 18, 10:47 PM
F13975973: D10558.diff
Fri, Oct 18, 12:24 PM
F13962749: D10558.id.diff
Oct 15 2024, 12:05 PM
F13959134: D10558.id25381.diff
Oct 14 2024, 5:59 PM
Subscribers

Details

Summary

The LINT_ARRAY_SEPARATOR rule was added to ArcanistXHPASTLinter in D10535. Unfortunately, it does not correctly handle nested arrays correctly. This patch fixes this. Depends on D10554.

Test Plan

Added a test case.

Diff Detail

Repository
rARC Arcanist
Branch
master
Lint
Lint Passed
Unit
Tests Passed
Build Status
Buildable 2636
Build 2640: [Placeholder Plan] Wait for 30 Seconds

Event Timeline

joshuaspence retitled this revision from to Fix `LINT_ARRAY_SEPARATOR` for nested arrays.
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.

Another possible issue:

     $keys = array(
       'key1' => mt_rand(),
       'key2' => '',
-      'key3' => 'Phabricator');
+      'key3' => 'Phabricator',);
epriestley edited edge metadata.
This revision is now accepted and ready to land.Sep 25 2014, 1:26 PM
This revision was automatically updated to reflect the committed changes.