This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 268019 - Class::expr auto completion isn't working
Summary: Class::expr auto completion isn't working
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Editor (show other bugs)
Version: Dev
Hardware: PC Windows 10 x64
: P3 normal (vote)
Assignee: Tomas Mysik
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-14 13:19 UTC by amobilia
Modified: 2016-09-14 13:19 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description amobilia 2016-09-14 13:19:07 UTC
From netcat PHP Sanity -> Class::{expr}()

Create new php class (copy code below)

class Foo {
    public static function bar(){
        echo "FooBar";
    }
}
Foo::{'bar'}();


-----
If I type "Foo::{'|'}(); " and call auto completion on the cursor (the | character), nothing is suggested.
I'm waiting for suggestion "bar"