Hirse / brackets-outline-list

Extension for Brackets and Phoenix to display a list of the functions or definitions in the currently opened document.
MIT License
79 stars 30 forks source link

Build a parser instead of using regexp to detect PHP code structure. #57

Closed yfwz100 closed 8 years ago

yfwz100 commented 8 years ago

Currently, the outline is very limited. The function defined inside a class is not described properly. Each constructor in a PHP is defined as the same name. It may make users confused.

In order to support hierarchical code structure, I suggest a parser instead of using regexp to build such code structure.

yfwz100 commented 8 years ago

42 may be related.