Bug 368424 - detect JavaScript function expressions assigned to variables for function outline search bar
Summary: detect JavaScript function expressions assigned to variables for function out...
Status: REPORTED
Alias: None
Product: kdevelop
Classification: Applications
Component: Language Support: QML/JavaScript (show other bugs)
Version: 5.0.0
Platform: Other Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdevelop-bugs-null
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-07 21:34 UTC by Be
Modified: 2016-09-07 21:34 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Be 2016-09-07 21:34:06 UTC
The function outline search bar works for JS functions defined with the syntax:

function functionName (args) {stuff};

but not with functions defined as expressions assigned to a variable:

functionName = function (args) {stuff};

Considering that variables can be reassigned to a function expression at any point, to support this something would have to be added to the GUI to move between places in the code where the variable is assigned to a different function.

Reproducible: Always