padawan-php / padawan.php

php intelligent code completion http server
http://mkusher.name/padawan/
MIT License
253 stars 30 forks source link

Feature/support completing files with syntax error #92

Closed halftan closed 10 months ago

halftan commented 7 years ago

Write successfully parsed content into cache and use it when current file has semantic errors.

Useful when completing in situations like this:

<?php
...
    if (some_expr() || $inst-><TAB>) {
    }
...