Skip to content

Instantly share code, notes, and snippets.

@antris
Created April 21, 2015 08:34
Embed
What would you like to do?
IntelliJ IDEA "go to definiton" bug
var {functionA, functionB} = require('./module')
functionA() // hitting cmd+B does not go to the definition
var m = require('./module')
m.functionA() // hitting cmd+B goes to the definition
module.exports = {
functionA: () => "hello!",
functionB: () => "hello, again!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment