Page MenuHomePhabricator

Extract variable type information from pht() calls
ClosedPublic

Authored by epriestley on Nov 8 2016, 4:16 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 9, 6:24 PM
Unknown Object (File)
Sun, Apr 7, 10:53 AM
Unknown Object (File)
Sat, Apr 6, 1:47 PM
Unknown Object (File)
Fri, Mar 29, 7:18 PM
Unknown Object (File)
Fri, Mar 29, 5:04 PM
Unknown Object (File)
Thu, Mar 28, 12:15 AM
Unknown Object (File)
Wed, Mar 27, 9:44 PM
Unknown Object (File)
Wed, Mar 27, 9:44 PM
Subscribers
None

Details

Summary

Ref T5267. When extrating data from pht() calls, also extract the argument types and export them into the map so they can be used by consumers.

We recognize plurals (phutil_count(), new PhutilNumber) and genders (phutil_person()). We'll need to annotate the codebase for those, since they're currently runtime-only.

Test Plan

Rebuilt extraction maps, got data like this (note "number" type annotation).

"Scaling pool \"%s\" up to %s daemon(s).": {
  "uses": [
    {
      "file": "/daemon/PhutilDaemonOverseer.php",
      "line": 378
    }
  ],
  "types": [
    null,
    "number"
  ]
},

Diff Detail

Repository
rP Phabricator
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

epriestley retitled this revision from to Extract variable type information from pht() calls.
epriestley updated this object.
epriestley edited the test plan for this revision. (Show Details)
epriestley added a reviewer: chad.
chad edited edge metadata.
This revision is now accepted and ready to land.Nov 8 2016, 4:18 PM
This revision was automatically updated to reflect the committed changes.