Page MenuHomePhabricator

Improve parsing of `use` statements
ClosedPublic

Authored by joshuaspence on Nov 19 2015, 8:50 AM.
Tags
None
Referenced Files
F15453591: D14518.id35120.diff
Sat, Mar 29, 12:51 PM
F15453590: D14518.id35128.diff
Sat, Mar 29, 12:51 PM
F15453533: D14518.diff
Sat, Mar 29, 12:29 PM
F15428489: D14518.id35128.diff
Sun, Mar 23, 8:41 PM
F15421942: D14518.id35120.diff
Sat, Mar 22, 3:47 AM
F15418832: D14518.id35128.diff
Fri, Mar 21, 1:47 AM
F15408259: D14518.id.diff
Tue, Mar 18, 9:58 PM
F15402171: D14518.diff
Mon, Mar 17, 9:02 PM
Subscribers

Details

Summary

The way that we parse use statements at the moment is a bit odd. For example, consider the following example:

<?php

use A\B\C;
use X\Y\Z;

This is currently parsed as:

xhpast-before.png (336×182 px, 8 KB)

After this change, it is instead parsed as:

xhpast-after.png (279×166 px, 7 KB)

Test Plan

Added a test case.

Diff Detail

Repository
rPHU libphutil
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

joshuaspence retitled this revision from to Improve parsing on `use` statements.
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.
epriestley edited edge metadata.
This revision is now accepted and ready to land.Nov 19 2015, 4:34 PM
joshuaspence retitled this revision from Improve parsing on `use` statements to Improve parsing of `use` statements.Nov 19 2015, 7:47 PM
joshuaspence edited edge metadata.
This revision was automatically updated to reflect the committed changes.