Bug 495307 - Support Hyperlink/Ctrl+Click on files in Node.js console
Summary: Support Hyperlink/Ctrl+Click on files in Node.js console
Status: NEW
Alias: None
Product: JSDT
Classification: WebTools
Component: Debug (show other bugs)
Version: unspecified   Edit
Hardware: All All
: P3 enhancement (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact: Victor Rubezhny CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-06-02 10:35 EDT by Mickael Istria CLA
Modified: 2016-06-02 10:35 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 Mickael Istria CLA 2016-06-02 10:35:40 EDT
Assuming I run a Node.js process and get the following stack:

/home/mistria/git/mathjs/lib/core/core.js:48
  match.type = {};
  ^
ReferenceError: match is not defined
    at Object.create (/home/mistria/git/mathjs/lib/core/core.js:48:3)
    at create (/home/mistria/git/mathjs/index.js:28:19)
    at Object.<anonymous> (/home/mistria/git/mathjs/index.js:38:18)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)
    at startup (node.js:119:16)
    at node.js:935:3

It would be nice to allow Ctrl+Click on the stack trace to open the referenced file and place cursor at the specified location.