Bug 502580 - Functions and constants after use class_name
Summary: Functions and constants after use class_name
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: PDT (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: PHP Core CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-29 10:32 EDT by Dawid Pakula CLA
Modified: 2020-05-14 10:16 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dawid Pakula CLA 2016-09-29 10:32:54 EDT
first example:
use My/FQN |

I see $_GET/$_POST + templates. Only "AS" keyword should be available.

second example:
use My/FQN as|;

PDT produce list of namespaces/classes/function/constants prefixed by "AS". Only AS keyword should be appended and also automatically appended (space).

third example:
use My/FQN as |;

here I see again completely useless list of templates. List should be empty, or eventually we might want suggest entry with  "Base" prefix and class name.